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:
@@ -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")]
|
||||
|
Reference in New Issue
Block a user