[]
Creates a new button cell.
public ButtonCellType()
Public Sub New()
Creates a new button cell with the specified command.
public ButtonCellType(string cmd)
Public Sub New(cmd As String)
Type | Name | Description |
---|---|---|
string | cmd | String of command to perform when the user clicks the button |
Creates a new button cell with the specified command and text.
public ButtonCellType(string cmd, string text)
Public Sub New(cmd As String, text As String)
Type | Name | Description |
---|---|---|
string | cmd | String of command to perform when the user clicks the button |
string | text | String with button text |
Creates a new button cell with the specified command and button type.
public ButtonCellType(string cmd, ButtonType type)
Public Sub New(cmd As String, type As ButtonType)
Type | Name | Description |
---|---|---|
string | cmd | String of command to perform when the user clicks the button |
ButtonType | type | Button type |
Creates a new button cell with the specified command and button type.
public ButtonCellType(string cmd, ButtonType type, string urlOrText)
Public Sub New(cmd As String, type As ButtonType, urlOrText As String)
Type | Name | Description |
---|---|---|
string | cmd | String of command to perform when the user clicks the button |
ButtonType | type | Button type |
string | urlOrText | Image URL if the button type is ButtonType.ImageButton; otherwise, the button text |