Control.ControlAccessibleObject.NotifyClients Method

Definition

Notifies accessibility client applications of AccessibleEvents.

Overloads

NotifyClients(AccessibleEvents)

Notifies accessibility client applications of the specified AccessibleEvents.

NotifyClients(AccessibleEvents, Int32)

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.

NotifyClients(AccessibleEvents, Int32, Int32)

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control, giving the identification of the AccessibleObject.

NotifyClients(AccessibleEvents)

Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs

Notifies accessibility client applications of the specified AccessibleEvents.

C#
public void NotifyClients(System.Windows.Forms.AccessibleEvents accEvent);

Parameters

accEvent
AccessibleEvents

The AccessibleEvents to notify the accessibility client applications of.

Remarks

You must call the NotifyClients method for each AccessibleEvents object the accessibility client applications are to be notified of. The NotifyClients method is typically called when a property is set or from within an event handler. For example, you might call the NotifyClients method and pass in an AccessibleEvents value of Hide from within the event handler for the Control.VisibleChanged event.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

NotifyClients(AccessibleEvents, Int32)

Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control.

C#
public void NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int childID);

Parameters

accEvent
AccessibleEvents

The AccessibleEvents to notify the accessibility client applications of.

childID
Int32

The child Control to notify of the accessible event.

Remarks

You must call the NotifyClients method for each AccessibleEvents object the accessibility client applications are to be notified of. The NotifyClients method is typically called when a property is set or from within an event handler. For example, you might call the NotifyClients method and pass in an AccessibleEvents value of Hide from within from within the event handler for the Control.VisibleChanged event.

See also

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

NotifyClients(AccessibleEvents, Int32, Int32)

Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs
Source:
Control.ControlAccessibleObject.cs

Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control, giving the identification of the AccessibleObject.

C#
public void NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID);

Parameters

accEvent
AccessibleEvents

The AccessibleEvents to notify the accessibility client applications of.

objectID
Int32

The identifier of the AccessibleObject.

childID
Int32

The child Control to notify of the accessible event.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9