Share via


IUIAccessibilityContainerDataTable Interface

Definition

This interface represents the Objective-C protocol UIAccessibilityContainerDataTable.

[Foundation.Protocol(Name="UIAccessibilityContainerDataTable", WrapperType=typeof(UIKit.UIAccessibilityContainerDataTableWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="GetAccessibilityDataTableCellElement", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.UIntPtr), typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell), Selector="accessibilityDataTableCellElementForRow:column:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAccessibilityHeaderElementsForRow", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell[]), Selector="accessibilityHeaderElementsForRow:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAccessibilityHeaderElementsForColumn", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell[]), Selector="accessibilityHeaderElementsForColumn:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="accessibilityRowCount", IsProperty=true, IsRequired=true, IsStatic=false, Name="AccessibilityRowCount", PropertyType=typeof(System.UIntPtr), Selector="accessibilityRowCount")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="accessibilityColumnCount", IsProperty=true, IsRequired=true, IsStatic=false, Name="AccessibilityColumnCount", PropertyType=typeof(System.UIntPtr), Selector="accessibilityColumnCount")]
public interface IUIAccessibilityContainerDataTable : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="UIAccessibilityContainerDataTable", WrapperType=typeof(UIKit.UIAccessibilityContainerDataTableWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="GetAccessibilityDataTableCellElement", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(System.UIntPtr), typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell), Selector="accessibilityDataTableCellElementForRow:column:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAccessibilityHeaderElementsForRow", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell[]), Selector="accessibilityHeaderElementsForRow:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAccessibilityHeaderElementsForColumn", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.UIntPtr) }, ReturnType=typeof(UIKit.IUIAccessibilityContainerDataTableCell[]), Selector="accessibilityHeaderElementsForColumn:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="accessibilityRowCount", IsProperty=true, IsRequired=true, IsStatic=false, Name="AccessibilityRowCount", PropertyType=typeof(System.UIntPtr), Selector="accessibilityRowCount")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="accessibilityColumnCount", IsProperty=true, IsRequired=true, IsStatic=false, Name="AccessibilityColumnCount", PropertyType=typeof(System.UIntPtr), Selector="accessibilityColumnCount")>]
type IUIAccessibilityContainerDataTable = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Properties

Name Description
AccessibilityColumnCount

Gets the number of columns in the table.

AccessibilityRowCount

Gets the number of rows in the table.

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

Name Description
GetAccessibilityDataTableCellElement(UIntPtr, UIntPtr)

Returns a description of the row span and column span for the cell that is located at the specified row and column.

GetAccessibilityHeaderElementsForColumn(UIntPtr)

Returns an array of description of the row span and column span for the header cells for the specified column.

GetAccessibilityHeaderElementsForRow(UIntPtr)

Returns an array of description of the row span and column span for the header cells for the specified row.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
GetAccessibilityHeaderElementsForColumn(IUIAccessibilityContainerDataTable, UIntPtr)

Returns an array of description of the row span and column span for the header cells for the specified column.

GetAccessibilityHeaderElementsForRow(IUIAccessibilityContainerDataTable, UIntPtr)

Returns an array of description of the row span and column span for the header cells for the specified row.

Applies to