OverlappedPresenter.IsModal Property

Definition

Gets or sets a value that indicates whether this window is modal.

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

void IsModal(bool value);
public bool IsModal { get; set; }
var boolean = overlappedPresenter.isModal;
overlappedPresenter.isModal = boolean;
Public Property IsModal As Boolean

Property Value

Boolean

bool

true if this window is modal; otherwise, false;

Remarks

A modal window takes precedence over the owner window and blocks any input to the owner window until the modal window is either dismissed or no longer modal.

Applies to