Свойство | Тип | Описание | |
---|---|---|---|
MakeRelatedWrapper | System.Windows.Forms.AccessibleObject |
Метод | Описание | |
---|---|---|
AccessibilityWrapper ( |
Make one. The root site is used in case comAccessible is null, to keep trying for a valid one later when the root box has been created.
|
|
GetChild ( int index ) : System.Windows.Forms.AccessibleObject |
One of many methods that delegate to the IAccessible, with a suitable default if it is null.
|
|
GetChildCount ( ) : int |
One of many methods that delegate to the IAccessible, with a suitable default if it is null.
|
|
HitTest ( int x, int y ) : System.Windows.Forms.AccessibleObject |
One of many methods that delegate to the IAccessible, with a suitable default if it is null.
|
|
Navigate ( AccessibleNavigation navdir ) : System.Windows.Forms.AccessibleObject |
One of many methods that delegate to the IAccessible, with a suitable default if it is null. Not directly tested so far...this will work provided the navdir enum uses the same values as the old C++ defines for NAVDIR_DOWN etc. ///
|
Метод | Описание | |
---|---|---|
MakeRelatedWrapper ( Accessibility iAccessible ) : System.Windows.Forms.AccessibleObject |
Used wherever we need a C# AccessibleObject for some child. Note that this is NOT a wrapper for the whole contents of the rootsite, so we do NOT want to make one with its IAccessible null, because that would turn around and retrieve the IAccessible for the whole rootsite. I think we could make one with rootsite null, except that we have an assertion to prevent that! So just return null if we don't actually have a related IAccessible to wrap.
|
public AccessibilityWrapper ( |
||
rootSite | ||
comAccessible | Accessibility | |
Результат | System |
public GetChild ( int index ) : System.Windows.Forms.AccessibleObject | ||
index | int | |
Результат | System.Windows.Forms.AccessibleObject |
public HitTest ( int x, int y ) : System.Windows.Forms.AccessibleObject | ||
x | int | |
y | int | |
Результат | System.Windows.Forms.AccessibleObject |
public Navigate ( AccessibleNavigation navdir ) : System.Windows.Forms.AccessibleObject | ||
navdir | AccessibleNavigation | |
Результат | System.Windows.Forms.AccessibleObject |