Added Warning with triple line box, Adjusted PSI Use Class text X-location

Support for Printing ‘[xx]’ text within an annotation by allowing for xlocation on dialog.
Triple Line Box around note or caution
This commit is contained in:
2016-08-04 10:35:26 +00:00
parent ac47021609
commit a2835ab73d
8 changed files with 535 additions and 420 deletions

View File

@@ -41,6 +41,33 @@ namespace VEPROMS.CSLA.Library
if (s == "<Config/>" || s == "<Config></Config>") return string.Empty;
return s;
}
#region PrintableText
public int PrintableText_XLocation
{
get
{
string s = _Xp["PrintableText", "XLocation"];
if (s == string.Empty) return 0;
int tst = 0;
try
{
tst = int.Parse(s);
}
catch (Exception ex)
{
return 0;
}
return int.Parse(s);
}
set
{
string s = _Xp["PrintableText", "XLocation"];
if (value.ToString() == s) return;
_Xp["PrintableText", "XLocation"] = value.ToString();
OnPropertyChanged("PrintableText_XLocation");
}
}
#endregion
#region AnnotationTypeConfigProperties
[Category("Integration")] // Special Editor for Annotation Type
[DisplayName("Executable")]