blob: ed944e99126930a271739c15e5b817d37ab4a143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ Parsed from AppKit.framework NSTextStorageScripting.h }
{$ifdef CLASSES}
type
Scripting = objccategory external (NSTextStorage)
procedure setAttributeRuns(newValue: NSArray); message 'setAttributeRuns:';
function attributeRuns: NSArray; message 'attributeRuns';
procedure setParagraphs(newValue: NSArray); message 'setParagraphs:';
function paragraphs: NSArray; message 'paragraphs';
procedure setWords(newValue: NSArray); message 'setWords:';
function words: NSArray; message 'words';
procedure setCharacters(newValue: NSArray); message 'setCharacters:';
function characters: NSArray; message 'characters';
procedure setFont(newValue: NSFont); message 'setFont:';
function font: NSFont; message 'font';
procedure setForegroundColor(newValue: NSColor); message 'setForegroundColor:';
function foregroundColor: NSColor; message 'foregroundColor';
end;
{$endif}
|