Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.Reporting.v4.3 Assembly / Xceed.Grid.Reporting Namespace / QueryVariableTextEventArgs Class / QueryVariableTextEventArgs Constructor
The Format Provider that will be used to format the string representation of the variable.
The value of the variable's "format" parameter.
The number of the current page.
The total number of pages in the report.
The name of the variable.
The current string representation of the variable.


In This Topic
    QueryVariableTextEventArgs Constructor
    In This Topic
    Initializes a new instance of the QueryVariableTextEventArgs class specifying the information necessary to evaulate the variable.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal formatProvider As IFormatProvider, _
       ByVal format As String, _
       ByVal pageNumber As Integer, _
       ByVal totalPageNumber As Integer, _
       ByVal variableName As String, _
       ByVal variableText As String _
    )
    'Usage
     
    Dim formatProvider As IFormatProvider
    Dim format As String
    Dim pageNumber As Integer
    Dim totalPageNumber As Integer
    Dim variableName As String
    Dim variableText As String
     
    Dim instance As New QueryVariableTextEventArgs(formatProvider, format, pageNumber, totalPageNumber, variableName, variableText)
    public QueryVariableTextEventArgs( 
       IFormatProvider formatProvider,
       string format,
       int pageNumber,
       int totalPageNumber,
       string variableName,
       string variableText
    )

    Parameters

    formatProvider
    The Format Provider that will be used to format the string representation of the variable.
    format
    The value of the variable's "format" parameter.
    pageNumber
    The number of the current page.
    totalPageNumber
    The total number of pages in the report.
    variableName
    The name of the variable.
    variableText
    The current string representation of the variable.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also