pub unsafe trait NSAccessibilityNavigableStaticText: NSAccessibilityStaticText {
    // Provided methods
    unsafe fn accessibilityStringForRange(
        &self,
        range: NSRange
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityLineForIndex(&self, index: NSInteger) -> NSInteger
       where Self: Sized + Message { ... }
    unsafe fn accessibilityRangeForLine(
        &self,
        line_number: NSInteger
    ) -> NSRange
       where Self: Sized + Message { ... }
    unsafe fn accessibilityFrameForRange(&self, range: NSRange) -> NSRect
       where Self: Sized + Message { ... }
}
Available on crate feature NSAccessibilityProtocols only.

Provided Methods§

source

unsafe fn accessibilityStringForRange( &self, range: NSRange ) -> Option<Retained<NSString>>
where Self: Sized + Message,

source

unsafe fn accessibilityLineForIndex(&self, index: NSInteger) -> NSInteger
where Self: Sized + Message,

source

unsafe fn accessibilityRangeForLine(&self, line_number: NSInteger) -> NSRange
where Self: Sized + Message,

source

unsafe fn accessibilityFrameForRange(&self, range: NSRange) -> NSRect
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSAccessibilityNavigableStaticText

source§

const NAME: &'static str = "NSAccessibilityNavigableStaticText"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn NSAccessibilityNavigableStaticText

Implementations on Foreign Types§

source§

impl<T> NSAccessibilityNavigableStaticText for ProtocolObject<T>

Implementors§

source§

impl NSAccessibilityNavigableStaticText for NSComboBox

Available on crate features NSControl and NSResponder and NSTextField and NSView and NSComboBox only.
source§

impl NSAccessibilityNavigableStaticText for NSSearchField

Available on crate features NSControl and NSResponder and NSTextField and NSView and NSSearchField only.
source§

impl NSAccessibilityNavigableStaticText for NSSecureTextField

Available on crate features NSControl and NSResponder and NSTextField and NSView and NSSecureTextField only.
source§

impl NSAccessibilityNavigableStaticText for NSTextField

Available on crate features NSControl and NSResponder and NSView and NSTextField only.
source§

impl NSAccessibilityNavigableStaticText for NSTextView

Available on crate features NSResponder and NSText and NSView and NSTextView only.
source§

impl NSAccessibilityNavigableStaticText for NSTokenField

Available on crate features NSControl and NSResponder and NSTextField and NSView and NSTokenField only.