[]
Gets the control associated with the editor for the specified parent control.
public Control GetEditorControl(Control parent, Appearance appearance, float zoomFactor)
Public Function GetEditorControl(parent As Control, appearance As Appearance, zoomFactor As Single) As Control
Type | Name | Description |
---|---|---|
Control | parent | Parent control |
Appearance | appearance | Appearance settings of the control |
float | zoomFactor | Numeric value for scaling the display of the control |
Type | Description |
---|---|
Control | The control |
After creating the control the first time, add it to parent.Controls. Use this function to return the same instance when called for that parent.
Gets the edit control for this cell type with the specified appearance and scaling.
public override Control GetEditorControl(Appearance appearance, float zoomFactor)
Public Overrides Function GetEditorControl(appearance As Appearance, zoomFactor As Single) As Control
Type | Name | Description |
---|---|---|
Appearance | appearance | Appearance settings of the cell |
float | zoomFactor | Numeric value for scaling the display of the cell |
Type | Description |
---|---|
Control | The edit control for this cell type. |