BRTextControl
Source Code Examples: (that shows/utilize the control)
- Alan Quatermain and others have provided a number of great Plugin_Tutorials_For_Developers and in the Downloader Controller tutorial (with source).
Provides for the following 'setters':
- (void)setTextAttributes:(id)fp8;
- Comments: ????
- Expects: ????
- Example Usage: [_yourTextControl setTextAttributes:????]
- (void)setText:(id)fp8;
- Comments: Easy enough... this sets the text
- Expects: NSString??
- Example Usage: [_yourTextControl setText:@"This is the text I want to show."]
- (void)setMaximumSize:(struct _NSSize)fp8;
- Comments: Sets maximum size of text - but max of what? size? characters?? length???
- Expects: NSSize??
- Example Usage: [_yourTextControl setMaximumSize: ?????]
- (void)setFrame:(struct _NSRect)fp8;
- Comments: ????
- Expects: NSRect or is it NSFrame delete this if you know)
- Example Usage: [_yourTextControl setFrame: _yourNSFrame]
- (void)setMaxLines:(unsigned int)fp8;
- Comments: ????
- Expects: Integer
- Example Usage: [_yourTextControl setMaxLines: _maxLines]
Other notes / observations :
- None at this time
Back to the Plug-in Developers Note Pad