Application.ShowWindowsInTaskbar property (PowerPoint)
Determines whether there is a separate Windows taskbar button for each open presentation. Read/write.
Syntax
expression. ShowWindowsInTaskbar
expression A variable that represents an Application object.
Return value
MsoTriState
Remarks
When set to True, this property simulates the look of a single-document interface (SDI), which makes it easier to navigate between open presentations. However, if you work with multiple presentations while other applications are open, you may want to set this property to False to avoid filling your taskbar with unnecessary buttons.
The value of the ShowWindowsInTaskbar property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | There is not a separate Windows taskbar button for each open presentation. |
msoTrue | The default. There is a separate Windows taskbar button for each open presentation. |
Example
This example specifies that each open presentation doesn't have a separate Windows taskbar button.
Application.ShowWindowsInTaskbar = msoFalse
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.