Cargando...
Buscando...
Nada coincide
Referencia de la interface sage.ew.reports.ButtonTittle.IActiveMenu

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

Propiedades

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

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);
Provides access to the ActiveButton instances attached to the menu instance.
IActiveItems Items
Gets the list of ActiveButton instances associated with the current menu instances.

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 de esta interface está generada del siguiente archivo: