17 using erminas.SmartAPI.CMS.Converter;
19 namespace erminas.SmartAPI.CMS.Project.ContentClasses.Elements
21 [EnumConversionHelper]
22 public static class ScrollingUtils
24 public static string ToRQLString(
this Scrolling value)
37 throw new ArgumentException(
string.Format(
"Unknown {0} value: {1}", typeof (
Scrolling).Name, value));
41 public static Scrolling ToScrolling(
string value)
43 if (
string.IsNullOrEmpty(value))
47 switch (value.ToUpperInvariant())
56 throw new ArgumentException(
string.Format(
"Cannot convert string value {1} to {0}",