Corrected comment

Added Ordinal to vefn_SiblingItems
Added Stored Procedure vesp_SortProcedures to sort procedures within a DocVersion
Added Error Handler in Range.Text
Corrected logic in FindRO to return a null when an RO is not found.
This commit is contained in:
Rich
2013-02-28 15:47:52 +00:00
parent 767e9762e0
commit 4abaceac23
3 changed files with 82 additions and 4 deletions

View File

@@ -414,7 +414,17 @@ namespace LBWordLibrary
}
public String Text
{
get { return (GetProperty("Text").ToString()); }
get
{
try
{
return (GetProperty("Text").ToString());
}
catch (Exception ex)
{
return "";
}
}
set { SetProperty("Text", value); }
}
public LBRange GoTo()