Skip to content

SyncfusionRibbon

This behavior pattern implements standard behavior for Ribbon control.

UI element class: Syncfusion.Windows.Forms.Tools.RibbonControlAdv

Extends ManagedObject

Extends SeSSimulatedObject

Behavior Pattern: SyncfusionRibbonBehavior

Property Summary

Property Description Getter Setter
SelectedTab Text of the selected tab GetSelectedTab SetSelectedTab

Action Summary

Action Description
DoClickItem Performs click on the ribbon item given by caption or tooltip text
DoSelectTab Selects the tab by name.

Property Detail

SelectedTab

Text of the selected tab

Type: string

Accessors: GetSelectedTab, SetSelectedTab

value = SeS('SomeSyncfusionRibbon').GetSelectedTab()

SeS('SomeSyncfusionRibbon').SetSelectedTab(/**string*/value)

Action Detail

DoClickItem

Performs click on the ribbon item given by caption or tooltip text

SeS('SomeSyncfusionRibbon').DoClickItem(captionOrTooltip)

Parameters:

Name Type Description
captionOrTooltip string | number caption or tooltip text of the item to click.

Returns:

boolean: 'true' if success, 'false' otherwise.

DoSelectTab

Selects the tab by name.

SeS('SomeSyncfusionRibbon').DoSelectTab(tabName)

Parameters:

Name Type Description
tabName string Tab name to select

Returns:

boolean: 'true' if success, 'false' otherwise.