Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using Telerik.Sitefinity.Configuration;
  2.  
  3. namespace SitefinityWebApp
  4. {
  5. public class ReadValuesPageAppearanceConfig
  6. {
  7. public static void ReadPageAppearanceConfig()
  8. {
  9. PageAppearanceConfig config = Config.Get<PageAppearanceConfig>();
  10.  
  11. var pageColor = config.Color;
  12. var pageFontSize = config.Fonts["Verdana"].Size;
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement