This commit is contained in:
2011-05-19 13:26:37 +00:00
parent c6821188c5
commit 4405463e8e
4 changed files with 116 additions and 75 deletions

View File

@@ -95,22 +95,22 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Token, "@Token");
}
}
private LazyLoad<int?> _Row;
private LazyLoad<float?> _Row;
[Category("Location")]
[DisplayName("Vertical Position")]
[Description("Vertical Position")]
public int? Row
public float? Row
{
get
{
return LazyLoad(ref _Row, "@Row");
}
}
private LazyLoad<int?> _Col;
private LazyLoad<float?> _Col;
[Category("Location")]
[DisplayName("Horizontal Position")]
[Description("Horizontal Position")]
public int? Col
public float? Col
{
get
{