Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / IntelliSenseItems Class / GetFunctionIntelliSense Method
The workbook contains target function.
The function to get IntelliSense content.
The index of current argument, which is under the caret.
The total number of current arguments.
true to indicate that optional argument should be display different with required argument.
The text display indicate has more argument to input.


In This Topic
    GetFunctionIntelliSense Method
    In This Topic
    Gets the IntelliSense content for the specified function.
    Syntax
    'Declaration
     
    
    Public Shared Function GetFunctionIntelliSense( _
       ByVal workbook As IWorkbook, _
       ByVal function As Function, _
       ByVal argIndex As Integer, _
       ByVal argCount As Integer, _
       ByVal font As Font, _
       Optional ByVal showOptionalArgument As Boolean, _
       Optional ByVal ellipsisText As String _
    ) As FunctionIntelliSense
    'Usage
     
    
    Dim workbook As IWorkbook
    Dim function As Function
    Dim argIndex As Integer
    Dim argCount As Integer
    Dim font As Font
    Dim showOptionalArgument As Boolean
    Dim ellipsisText As String
    Dim value As FunctionIntelliSense
     
    value = IntelliSenseItems.GetFunctionIntelliSense(workbook, function, argIndex, argCount, font, showOptionalArgument, ellipsisText)

    Parameters

    workbook
    The workbook contains target function.
    function
    The function to get IntelliSense content.
    argIndex
    The index of current argument, which is under the caret.
    argCount
    The total number of current arguments.
    font
    showOptionalArgument
    true to indicate that optional argument should be display different with required argument.
    ellipsisText
    The text display indicate has more argument to input.
    See Also