Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / SyntaxHighlight Class / GetFunctionEntry Method
The index of the character for which to retrieve the highlight entry.
An integer value indicates the current row.
An integer value indicates the current column.
true if the entry is used for intellisense (entry ancestor will be returned if caret is in function name); otherwise, the exact entry at the caret will return.


In This Topic
    GetFunctionEntry Method
    In This Topic
    Gets the syntax highlight entry for function at the specified character index.
    Syntax
    'Declaration
     
    
    Public Function GetFunctionEntry( _
       ByVal index As Integer, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       Optional ByVal intellisense As Boolean _
    ) As SyntaxHighlightEntry
    'Usage
     
    
    Dim instance As SyntaxHighlight
    Dim index As Integer
    Dim row As Integer
    Dim column As Integer
    Dim intellisense As Boolean
    Dim value As SyntaxHighlightEntry
     
    value = instance.GetFunctionEntry(index, row, column, intellisense)
    public SyntaxHighlightEntry GetFunctionEntry( 
       int index,
       int row,
       int column,
       bool intellisense
    )

    Parameters

    index
    The index of the character for which to retrieve the highlight entry.
    row
    An integer value indicates the current row.
    column
    An integer value indicates the current column.
    intellisense
    true if the entry is used for intellisense (entry ancestor will be returned if caret is in function name); otherwise, the exact entry at the caret will return.

    Return Value

    A SyntaxHighlightEntry value represents the syntax highlight entry for function.
    See Also