AccessibilityAriaLandmarkSet Method (WebControl, String, String) |
Set an ARIA landmark (role) on the specified control. ARIA landmarks can be used by assistive
technology such as screen readers to help visually-impaired users better navigate a web page.
See: http://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static void AriaLandmarkSet(
WebControl ctrl,
string role,
string label
)
Public Shared Sub AriaLandmarkSet (
ctrl As WebControl,
role As String,
label As String
)
Parameters
- ctrl
- Type: System.Web.UI.WebControlsWebControl
The control on which to set the landmark. - role
- Type: SystemString
The landmark role. - label
- Type: SystemString
The label (caption) for the landmark.
See Also