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