BalloonChangedEventArgs.Visible Property

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

Gets or sets a value indicating whether the message balloon was changed to visible.

Namespace:  Microsoft.WindowsCE.Forms
Assembly:  Microsoft.WindowsCE.Forms (in Microsoft.WindowsCE.Forms.dll)

Syntax

'Declaration
Public ReadOnly Property Visible As Boolean
    Get
'Usage
Dim instance As BalloonChangedEventArgs
Dim value As Boolean

value = instance.Visible
public bool Visible { get; }
public:
property bool Visible {
    bool get ();
}
member Visible : bool

Property Value

Type: System.Boolean
true if the Visible property on the Notification is true; otherwise, false.

Remarks

You can use this property to determine whether a notification is displayed or hidden.

Examples

The following code example shows where to add code for adding functionality to an application when a balloon is visible. This code example is part of a larger example provided for the Notification class.

' You can use the BalloonChanged event
' created by tracking each time the notification is made visible.
Private Sub OnBalloonChanged(obj As Object, _
  balevent As BalloonChangedEventArgs) Handles Notification1.BalloonChanged
   If balevent.Visible = True Then
    ' You can add code here to add 
    ' functionality such as user interface 
    ' changes that should occur when
    ' the notification is displayed.
   End If
End Sub
// You can use the BalloonChanged event
// created by tracking each time the notification is made visible.
private void OnBalloonChanged(object obj, BalloonChangedEventArgs balevent)
{
    if (balevent.Visible == true)
    {
        // You can add code here to add 
        // functionality such as user interface 
        // changes that should occur when
        // the notification is displayed.
    }

}

.NET Framework Security

Platforms

Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Compact Framework

Supported in: 3.5, 2.0

See Also

Reference

BalloonChangedEventArgs Class

BalloonChangedEventArgs Members

Microsoft.WindowsCE.Forms Namespace