Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Office.VisibilityModeChangedMessage interface

Package:
office

Message used in the onVisibilityModeChanged invocation.

Remarks

Used by

Examples

Office.onReady(() => {
 Office.addin.onVisibilityModeChanged((args: Office.VisibilityModeChangedMessage) => {
 if (args.visibilityMode === Office.VisibilityMode.taskpane) {
 // Do something when the task pane is visible.
 }
 });

 // Other startup tasks.
});

Properties

visibilityMode

Visibility changed state.

Property Details

visibilityMode

Visibility changed state.

visibilityMode: Office.VisibilityMode;

Property Value


Feedback

Was this page helpful?