AddButton

AddButton(int, int, int, int, string)

Agrega un botón a una celda específica en el índice de columna de fila.

public Button AddButton(int row, int col, int width, int height, string text)
ParámetroEscribeDescripción
rowInt32Índice de fila de la celda.
colInt32Índice de columna de la celda.
widthInt32Ancho del botón.
heightInt32Altura del botón.
textStringBotón de texto.

Valor_devuelto

El botón añadido.

Ver también


AddButton(string, int, int, string)

Agrega un botón a una celda específica por nombre de celda.

public Button AddButton(string cellName, int width, int height, string text)
ParámetroEscribeDescripción
cellNameStringNombre de la celda de la cuadrícula.
widthInt32Ancho del botón.
heightInt32Altura del botón.
textStringBotón de texto.

Valor_devuelto

El botón añadido.

Ver también


AddButton(int, int, int, int, string, bool)

Agrega un botón a una celda específica en el índice de columna de fila.

public Button AddButton(int row, int col, int width, int height, string text, bool alwaysVisible)
ParámetroEscribeDescripción
rowInt32Índice de fila de la celda.
colInt32Índice de columna de la celda.
widthInt32Ancho del botón.
heightInt32Altura del botón.
textStringBotón de texto.
alwaysVisibleBooleanSi el botón debe estar siempre visible, solo funciona para el botón de control de celda.

Valor_devuelto

El botón añadido.

Ver también


AddButton(string, int, int, string, bool)

Agrega un botón a una celda específica por nombre de celda.

public Button AddButton(string cellName, int width, int height, string text, bool alwaysVisible)
ParámetroEscribeDescripción
cellNameStringNombre de la celda de la cuadrícula.
widthInt32Ancho del botón.
heightInt32Altura del botón.
textStringBotón de texto.
alwaysVisibleBooleanSi el botón debe estar siempre visible, solo funciona para el botón de control de celda.

Valor_devuelto

El botón añadido.

Ver también