Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Viewers Namespace / QueryViewerFittedHeightEventArgs Class / QueryViewerFittedHeightEventArgs Constructor
The Xceed.Grid.Cell whose content is to be displayed.
This parameter is reserved for future use.
A value, in pixels, representing the display width of the cell. The display width of the cell is its width without the borders.
The Graphics object used to paint.
true if the viewer is being printed; false otherwise.
The fitted height of the viewer in pixels. If -1, then no fitted height is required or desired.


    QueryViewerFittedHeightEventArgs Constructor
    Initializes a new instance of the QueryViewerFittedHeightEventArgs specifying the cell whose content is to be displayed as well as various information required to calculate the baseline.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal cell As Cell, _
       ByVal mode As AutoHeightMode, _
       ByVal cellDisplayWidth As Integer, _
       ByVal graphics As Graphics, _
       ByVal printing As Boolean, _
       ByVal fittedHeight As Integer _
    )
     
    'Usage
     
    Dim cell As Cell
    Dim mode As AutoHeightMode
    Dim cellDisplayWidth As Integer
    Dim graphics As Graphics
    Dim printing As Boolean
    Dim fittedHeight As Integer
     
    Dim instance As New QueryViewerFittedHeightEventArgs(cell, mode, cellDisplayWidth, graphics, printing, fittedHeight)

    Parameters

    cell
    The Xceed.Grid.Cell whose content is to be displayed.
    mode
    This parameter is reserved for future use.
    cellDisplayWidth
    A value, in pixels, representing the display width of the cell. The display width of the cell is its width without the borders.
    graphics
    The Graphics object used to paint.
    printing
    true if the viewer is being printed; false otherwise.
    fittedHeight
    The fitted height of the viewer in pixels. If -1, then no fitted height is required or desired.
    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