Added table function to return a list of Content records that contain a specified string.
Added stored procedure to standardize text (standard steps) Lazy Load font value. Return the correct EditItem when a step is deleted. Update the StepTabRibbon EditItem when the StepPanel EditItem is changed Get MyItemInfo if it is not set. Added missing logic to MyEditItem.
This commit is contained in:
@@ -4299,8 +4299,12 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
get
|
||||
{
|
||||
XmlNode xn = vlnFormatDocument.LookupSingleStepNode(base.XmlNode, "TabData[Font]");
|
||||
return (_Font == null ? _Font = new VE_Font(xn) : _Font);
|
||||
if (_Font == null)
|
||||
{
|
||||
XmlNode xn = vlnFormatDocument.LookupSingleStepNode(base.XmlNode, "TabData[Font]");
|
||||
_Font = new VE_Font(xn);
|
||||
}
|
||||
return _Font;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user