'Declaration Public Function New( _ ByVal control As Control, _ 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 control As Control 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 QueryEditorFittedHeightEventArgs(control, cell, mode, cellDisplayWidth, graphics, printing, fittedHeight)
public QueryEditorFittedHeightEventArgs( Control control, Cell cell, AutoHeightMode mode, int cellDisplayWidth, Graphics graphics, bool printing, int fittedHeight )
Parameters
- control
- The System.Windows.Forms.Control used to edit the cell's content.
- cell
- The Xceed.Grid.Cell to edit.
- mode
- An Xceed.Grid.AutoHeightMode value indicating in regards to what factors the fitted height of the editor will be calculated.
- 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 editor is being printed; false otherwise.
- fittedHeight
- The fitted height of the editor in pixels. If -1, then no fitted height is required or desired.