SplitView.IsPaneOpen Property

Definition

Gets or sets a value that specifies whether the SplitView pane is expanded to its full width.

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).

Applies to