SplitView.IsPaneOpen Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property bool IsPaneOpen { bool get(); void set(bool value); };
bool IsPaneOpen();
void IsPaneOpen(bool value);
public bool IsPaneOpen { get; set; }
var boolean = splitView.isPaneOpen;
splitView.isPaneOpen = boolean;
Public Property IsPaneOpen As Boolean
<SplitView IsPaneOpen="bool" .../>
Property Value
Boolean
bool
true if the pane is expanded to its full width; otherwise, false. The default is true.
Remarks
The effects of this property are influenced by the value of the DisplayMode property.
DisplayMode | Effect |
---|---|
Inline | IsPaneOpen is true. |
Overlay | When IsPaneOpen is false, the pane is hidden. |
Compact | When IsPaneOpen is false, the pane is shown in its compact size (see CompactPaneLength). |