Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TabStopCollection Class / TryGetValue Method
The position (in points) of the tab stop.
When this method returns, contains the tab stop at the specified position if the tab stop was found, otherwise contains null.

In This Topic
    TryGetValue Method (TabStopCollection)
    In This Topic
    Gets a tab stop at a specified position.
    Syntax
    'Declaration
     
    Public Function TryGetValue( _
       ByVal position As System.Single, _
       ByRef tabStop As TabStop _
    ) As System.Boolean
    public System.bool TryGetValue( 
       System.float position,
       out TabStop tabStop
    )

    Parameters

    position
    The position (in points) of the tab stop.
    tabStop
    When this method returns, contains the tab stop at the specified position if the tab stop was found, otherwise contains null.

    Return Value

    True if the tab stop at the specified position is found, false otherwise.
    See Also