Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active March 27, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/dc59b3e96b782b5ac61fb5805d8a3969 to your computer and use it in GitHub Desktop.
Save bjoerntx/dc59b3e96b782b5ac61fb5805d8a3969 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using TXTextControl.ReportingCloud;
class RCSamples
{
public static void ListFonts()
{
ReportingCloud rc = new ReportingCloud(
"username",
"password",
new Uri("https://api.reporting.cloud"));
// list all templates
string[] fonts = rc.ListFonts();
foreach (string font in fonts)
{
Console.WriteLine(font);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment