In This Article

RibbonWindowTitleBarViewModel Class

Stores view-model data about a RibbonWindow title bar.

public class RibbonWindowTitleBarViewModel : ObservableObjectBase
Inheritance:
object ObservableObjectBase object

Constructors

RibbonWindowTitleBarViewModel()

Initializes an instance of the class.

public RibbonWindowTitleBarViewModel()

Properties

ApplicationName

Gets or sets the name of the application.

public string ApplicationName { get; set; }

Property Value

string:

The name of the application.

CustomData

Gets or sets optional custom data.

public object CustomData { get; set; }

Property Value

object:

Optional custom data.

DocumentName

Gets or sets the name of the current document, if any.

public string DocumentName { get; set; }

Property Value

string:

The name of the current document, if any.

IsQuickAccessToolBarCustomizeButtonVisible

Gets or sets whether the QAT's customize button is visible.

public bool IsQuickAccessToolBarCustomizeButtonVisible { get; set; }

Property Value

bool:

true if the QAT's customize button is visible; otherwise, false.

IsQuickAccessToolBarVisible

Gets or sets whether the QAT should be visible in the title bar.

public bool IsQuickAccessToolBarVisible { get; set; }

Property Value

bool:

true if the QAT should be visible in the title bar; otherwise, false.

QuickAccessToolBarItems

Gets or sets the Quick Access ToolBar (QAT) items.

public IList QuickAccessToolBarItems { get; set; }

Property Value

IList:

The Quick Access ToolBar (QAT) items.

Ribbon

Gets or sets the Ribbon, if any, that is associated with the window.

public Ribbon Ribbon { get; set; }

Property Value

Ribbon:

The Ribbon, if any, that is associated with the window.

Inherited Members