Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IRange Interface / Characters Method
The first character to be returned. If this argument is either 0 or omitted, this property returns a range of characters starting with the first character.
The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the start character).


In This Topic
    Characters Method
    In This Topic
    Gets an ICharacters object that represents a range of characters within the object text. You can use the ICharacters object to format characters within a text string.
    Syntax
    'Declaration
     
    
    Function Characters( _
       Optional ByVal start As Integer, _
       Optional ByVal length As Integer _
    ) As ICharacters
    'Usage
     
    
    Dim instance As IRange
    Dim start As Integer
    Dim length As Integer
    Dim value As ICharacters
     
    value = instance.Characters(start, length)
    ICharacters Characters( 
       int start,
       int length
    )

    Parameters

    start
    The first character to be returned. If this argument is either 0 or omitted, this property returns a range of characters starting with the first character.
    length
    The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the start character).
    See Also