IsVisible Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets a value indicating whether this element is visible in the user interface (UI).

Namespace:  Microsoft.SPOT.Presentation
Assembly:  Microsoft.SPOT.TinyCore (in Microsoft.SPOT.TinyCore.dll)

Syntax

'Declaration
Public ReadOnly Property IsVisible As Boolean
public bool IsVisible { get; }
public:
property bool IsVisible {
    bool get ();
}
member IsVisible : bool
function get IsVisible () : boolean

Property Value

Type: System. . :: . .Boolean
true if the element is visible; otherwise, false.

Remarks

Determination of the IsVisible value takes all factors of layout into account. In contrast, the Visibility property, which is settable, only indicates the intention to programmatically make an element visible or invisible. Elements where IsVisible is false do not participate in input events (or commands), do not influence either the "measure" or "arrange" passes of layout, are not focusable, and are not in a tab sequence. IsVisible is not intended to be used as a style trigger. Using IsVisible as a style trigger might have unpredictable results. IsVisible is intended for state checking by lower level input implementations.

.NET Framework Security

See Also

Reference

UIElement Class

Microsoft.SPOT.Presentation Namespace