Release 4.0.0-preview1-00301
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / NamedHint.cs
1 namespace ElmSharp
2 {
3     /// <summary>
4     /// Predefined values for Hints properties in EvasObject
5     /// </summary>
6     public static class NamedHint
7     {
8         /// <summary>
9         /// This value can be used to <see cref="EvasObject.WeightX"/> and <see cref="EvasObject.WeightY"/>
10         /// </summary>
11         public static double Expand = 1.0;
12
13         /// <summary>
14         /// This value can be used to <see cref="EvasObject.AlignmentX"/> and <see cref="EvasObject.AlignmentY"/>
15         /// </summary>
16         public static double Fill = -1.0;
17     }
18 }