[]
Adds a child control to the control container for the sheet.
public virtual void AddControl(Control control)
Public Overridable Sub AddControl(control As Control)
Type | Name | Description |
---|---|---|
Control | control | Child control to add |
Adds a child control to the control container for the sheet at the specified row and column.
public virtual void AddControl(Control control, int row, int column)
Public Overridable Sub AddControl(control As Control, row As Integer, column As Integer)
Type | Name | Description |
---|---|---|
Control | control | Child control to add |
int | row | Row index at which to add child control |
int | column | Column index at which to add child control |
Adds a child control to the control container for the sheet at the specified row and column, with specified pixel offsets.
public virtual void AddControl(Control control, int row, int column, int offsetX, int offsetY)
Public Overridable Sub AddControl(control As Control, row As Integer, column As Integer, offsetX As Integer, offsetY As Integer)
Type | Name | Description |
---|---|---|
Control | control | Child control to add |
int | row | Row index at which to add child control |
int | column | Column index at which to add child control |
int | offsetX | Number of horizontal pixels to offset from the specified column index |
int | offsetY | Number of vertical pixels to offset from the specified row index |