Up

NSAccessibilityCustomAction class documentation

Authors

Generated by Gregory John Casamento,,,

Date: Generated at 2023-12-22 15:07:50 -0500

Software documentation for the NSAccessibilityCustomAction class

NSAccessibilityCustomAction : NSObject

Declared in:
AppKit/NSAccessibilityCustomAction.h
Availability: MacOS-X 10.13.0

Description forthcoming.

Instance Variables

Method summary

handler 

- (GSAccessibilityCustomActionHandler) handler;
Availability: MacOS-X 10.13.0

Description forthcoming.

initWithName: handler: 

- (instancetype) initWithName: (NSString*)name handler: (GSAccessibilityCustomActionHandler)handler;
Availability: MacOS-X 10.13.0

Description forthcoming.

initWithName: target: selector: 

- (instancetype) initWithName: (NSString*)name target: (id)target selector: (SEL)selector;
Availability: MacOS-X 10.13.0

Description forthcoming.

name 

- (NSString*) name;
Availability: MacOS-X 10.13.0

Description forthcoming.

selector 

- (SEL) selector;
Availability: MacOS-X 10.13.0

Description forthcoming.

setHandler: 

- (void) setHandler: (GSAccessibilityCustomActionHandler)handler;
Availability: MacOS-X 10.13.0

Description forthcoming.

setName: 

- (void) setName: (NSString*)name;
Availability: MacOS-X 10.13.0

Description forthcoming.

setSelector: 

- (void) setSelector: (SEL)selector;
Availability: MacOS-X 10.13.0

Description forthcoming.

setTarget: 

- (void) setTarget: (id)target;
Availability: MacOS-X 10.13.0

Description forthcoming.

target 

- (id) target;
Availability: MacOS-X 10.13.0

Description forthcoming.



Instance Variables for NSAccessibilityCustomAction Class

_handler

@protected GSAccessibilityCustomActionHandler _handler;
Availability: MacOS-X 10.13.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_name

@protected NSString* _name;
Availability: MacOS-X 10.13.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_selector

@protected SEL _selector;
Availability: MacOS-X 10.13.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_target

@protected id _target;
Availability: MacOS-X 10.13.0

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up