ListViewBase.IsZoomedInView Property

Definition

Gets or sets a value that indicates whether the ListViewBase instance is the zoomed-in view in its owning SemanticZoom.

public:
 property bool IsZoomedInView { bool get(); void set(bool value); };
bool IsZoomedInView();

void IsZoomedInView(bool value);
public bool IsZoomedInView { get; set; }
var boolean = listViewBase.isZoomedInView;
listViewBase.isZoomedInView = boolean;
Public Property IsZoomedInView As Boolean

Property Value

Boolean

bool

true if the ListViewBase is the zoomed-in view; otherwise, false.

Implements

Remarks

You typically don't set this property in XAML or in app code. The property is set implicitly when the view is set as either the ZoomedInView or ZoomedOutView of a SemanticZoom control.

Applies to

See also