Change-Id: I78b037aa5a736ec812487d2c3fbf9c1a6ac52c2d
--- /dev/null
+namespace ElmSharp
+{
+ /// <summary>
+ /// Predefined values for Hints properties in EvasObject
+ /// </summary>
+ public static class NamedHint
+ {
+ /// <summary>
+ /// This value can be used to <see cref="EvasObject.WeightX"/> and <see cref="EvasObject.WeightY"/>
+ /// </summary>
+ public static double Expand = 1.0;
+
+ /// <summary>
+ /// This value can be used to <see cref="EvasObject.AlignmentX"/> and <see cref="EvasObject.AlignmentY"/>
+ /// </summary>
+ public static double Fill = -1.0;
+ }
+}