Example #1
0
 public float ReadFloat(StyleValueHandle handle)
 {
     return(StyleSheet.CheckAccess <float>(this.floats, StyleValueType.Float, handle));
 }
Example #2
0
 public string ReadEnum(StyleValueHandle handle)
 {
     return(StyleSheet.CheckAccess <string>(this.strings, StyleValueType.Enum, handle));
 }
Example #3
0
 public string ReadResourcePath(StyleValueHandle handle)
 {
     return(StyleSheet.CheckAccess <string>(this.strings, StyleValueType.ResourcePath, handle));
 }
Example #4
0
 public Color ReadColor(StyleValueHandle handle)
 {
     return(StyleSheet.CheckAccess <Color>(this.colors, StyleValueType.Color, handle));
 }