'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.