'DeclarationFunction GetCharacters( _ ByVal start As System.Integer, _ ByVal length As System.Integer _ ) As ICharacters
'UsageDim instance As IRange Dim start As System.Integer Dim length As System.Integer Dim value As ICharacters value = instance.GetCharacters(start, length)
ICharacters GetCharacters( System.int start, System.int length )
function GetCharacters( 
    start: System.Integer;
    length: System.Integer
): ICharacters; 
            function GetCharacters( start : System.int, length : System.int ) : ICharacters;
ICharacters* GetCharacters( System.int start, System.int length )
ICharacters^ GetCharacters( System.int start, System.int length )
Parameters
- start
 - The zero based starting character.
 - length
 - The number of characters.
 
Return Value
An instance of ICharacters which represents a range of characters belonging to a text cell.