Share via


Notification.Visible Property

Gets or sets a value indicating whether the message balloon is visible.

Namespace: Microsoft.WindowsCE.Forms
Assembly: Microsoft.WindowsCE.Forms (in microsoft.windowsce.forms.dll)

Syntax

'Declaration
Public Property Visible As Boolean
'Usage
Dim instance As Notification
Dim value As Boolean

value = instance.Visible

instance.Visible = value
public bool Visible { get; set; }
public:
property bool Visible {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_Visible ()

/** @property */
public void set_Visible (boolean value)
public function get Visible () : boolean

public function set Visible (value : boolean)
Not applicable.

Property Value

true if the message balloon is visible; otherwise, false. The default is false.

Remarks

When this property is true, the content of the message balloon updates whenever the Text property is set.

When this property is true, and InitialDuration is set to zero, the message balloon does not display but the notification icon appears in the title bar

Example

The following code example demonstrates creating and displaying a notification with a twenty second duration. This code example is part of a larger example provided for the Notification class.

Notification1.Visible = True
notification1.Visible = true;

Platforms

Windows Mobile for Pocket PC

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Compact Framework

Supported in: 2.0

See Also

Reference

Notification Class
Notification Members
Microsoft.WindowsCE.Forms Namespace