Control.ControlAccessibleObject.NotifyClients Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.