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)

Notifies accessibility client applications of the specified AccessibleEvents.

public:
 void NotifyClients(System::Windows::Forms::AccessibleEvents accEvent);
public void NotifyClients (System.Windows.Forms.AccessibleEvents accEvent);
member this.NotifyClients : System.Windows.Forms.AccessibleEvents -> unit
Public Sub NotifyClients (accEvent As AccessibleEvents)

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

NotifyClients(AccessibleEvents, Int32)

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

public:
 void NotifyClients(System::Windows::Forms::AccessibleEvents accEvent, int childID);
public void NotifyClients (System.Windows.Forms.AccessibleEvents accEvent, int childID);
member this.NotifyClients : System.Windows.Forms.AccessibleEvents * int -> unit
Public Sub NotifyClients (accEvent As AccessibleEvents, childID As Integer)

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

NotifyClients(AccessibleEvents, Int32, Int32)

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

public:
 void NotifyClients(System::Windows::Forms::AccessibleEvents accEvent, int objectID, int childID);
public void NotifyClients (System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID);
member this.NotifyClients : System.Windows.Forms.AccessibleEvents * int * int -> unit
Public Sub NotifyClients (accEvent As AccessibleEvents, objectID As Integer, childID As Integer)

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