ComboBox.ChildAccessibleObject(ComboBox, IntPtr) Constructor

Definition

Initializes a new instance of the ComboBox.ChildAccessibleObject class.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 ChildAccessibleObject(System::Windows::Forms::ComboBox ^ owner, IntPtr handle);
public ChildAccessibleObject (System.Windows.Forms.ComboBox owner, IntPtr handle);
new System.Windows.Forms.ComboBox.ChildAccessibleObject : System.Windows.Forms.ComboBox * nativeint -> System.Windows.Forms.ComboBox.ChildAccessibleObject
Public Sub New (owner As ComboBox, handle As IntPtr)

Parameters

owner
ComboBox

The ComboBox control that owns the ComboBox.ChildAccessibleObject.

handle
IntPtr

nativeint

A handle to part of the ComboBox.

Exceptions

owner is null.

Remarks

The ComboBox control is internally made up of more than one control. The ComboBox.ChildAccessibleObject must know which handle to use. Since the handle to the individual control is a private member, consumers should not call this constructor.

Applies to