Referencia de la Interfaz sage.ew.reports.ButtonTittle.IActiveMenu

Provides access to the ActiveButton instances attached to the menu instance. Más...

Heredado por sage.ew.reports.ButtonTittle.ActiveMenuImpl.

Propiedades

IActiveItems Items [get]
 Gets the list of ActiveButton instances associated with the current menu instances. Más...
 
ToolTip ToolTip [get, set]
 Gets or sets the tool tip control used for rendering tool tips. Más...
 

Descripción detallada

Provides access to the ActiveButton instances attached to the menu instance.

This sample shows how to add & remove buttons form the IActiveMenu using the Items list.

// get an instance of the menu for the current form
IActiveMenu menu = ActiveMenu.GetInstance(this);
// add button to front the menu
menu.Items.Add(button);
// insert button at position 2
menu.Items.Insert(2, button);
// remove specific button
menu.Remove(button);
// remove button at position 2
menu.RemoveAt(2);

Definición en la línea 44 del archivo IActiveMenu.cs.

Documentación de propiedades

◆ Items

IActiveItems sage.ew.reports.ButtonTittle.IActiveMenu.Items
get

Gets the list of ActiveButton instances associated with the current menu instances.

The items.

Definición en la línea 51 del archivo IActiveMenu.cs.

◆ ToolTip

ToolTip sage.ew.reports.ButtonTittle.IActiveMenu.ToolTip
getset

Gets or sets the tool tip control used for rendering tool tips.

The tool tip settings.

Definición en la línea 57 del archivo IActiveMenu.cs.


La documentación para este interfaz fue generada a partir del siguiente fichero: