AuthenticToolbarButtons.NewButton
Deklaration: NewButton(nPosition als long, nCommandId als SPYAuthenticCommand)
Beschreibung
Fügt eine neue Schaltfläche für den Befehl "nCommandId" an der Position "nPosition" der Symbolleiste ein. nPosition beginnt mit 1.
Beispiel
Fügt eine neue Symbolleiste hinzu, ordnet sie am unteren Rand an und fügt neue Symbolleisten-Schaltflächen hinzu.
objPlugIn.ToolbarRows.NewRow(3) | // add a new Toolbar (Row 3) | |
set ToolbarRow = objPlugIn.ToolbarRows.Item(3) | ||
set Buttons = ToolbarRow.Buttons |
ToolbarRow.Alignment | = 2 | // align Toolbar to bottom | |
Buttons.NewButton | 1, 2 | // add Print Button | |
Buttons.NewButton | 1, 3 | // add PrintPreview Button | |
Buttons.NewSeparator | 2 | // add Separator | |
Buttons.NewButton | 1, 4 | // add Validate Button |
Bei Aufruf von StartEditing oder ReloadToolbars werden die geänderten Symbolleisteneinstellungen verwendet.