Up
Authors
- Richard Frith-Macdonald (
richard@brainstorm.co.uk
)
-
NSParagraphStyle and NSMutableParagraphStyle
hold paragraph style information NSTextTab holds information
about a single tab stop
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSParagraphStyle.h
Availability: OpenStep
Description forthcoming.
Method summary
- (void)
addTabStop: (
NSTextTab*)anObject;
Availability: OpenStep
Description forthcoming.
- (void)
removeTabStop: (
NSTextTab*)anObject;
Availability: OpenStep
Description forthcoming.
- (void)
setAlignment: (
NSTextAlignment)newAlignment;
Availability: OpenStep
Description forthcoming.
- (void)
setBaseWritingDirection: (
NSWritingDirection)direction;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
setFirstLineHeadIndent: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setHeadIndent: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setLineBreakMode: (
NSLineBreakMode)mode;
Availability: OpenStep
Description forthcoming.
- (void)
setLineSpacing: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setMaximumLineHeight: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setMinimumLineHeight: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setParagraphSpacing: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- (void)
setParagraphStyle: (
NSParagraphStyle*)obj;
Availability: OpenStep
Description forthcoming.
- (void)
setTabStops: (NSArray*)array;
Availability: OpenStep
Description forthcoming.
- (void)
setTailIndent: (float)aFloat;
Availability: OpenStep
Description forthcoming.
- Declared in:
- AppKit/NSParagraphStyle.h
- Conforms to:
- NSCopying
- NSMutableCopying
- NSCoding
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
+ (
NSParagraphStyle*)
defaultParagraphStyle;
Availability: OpenStep
Description forthcoming.
+ (
NSWritingDirection)
defaultWritingDirectionForLanguage: (NSString*)language;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (
NSTextAlignment)
alignment;
Availability: OpenStep
Description forthcoming.
- (
NSWritingDirection)
baseWritingDirection;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (float)
firstLineHeadIndent;
Availability: OpenStep
Description forthcoming.
- (float)
headIndent;
Availability: OpenStep
Description forthcoming.
- (
NSLineBreakMode)
lineBreakMode;
Availability: OpenStep
Description forthcoming.
- (float)
lineSpacing;
Availability: OpenStep
Description forthcoming.
- (float)
maximumLineHeight;
Availability: OpenStep
Description forthcoming.
- (float)
minimumLineHeight;
Availability: OpenStep
Description forthcoming.
- (float)
paragraphSpacing;
Availability: OpenStep
Description forthcoming.
- (NSArray*)
tabStops;
Availability: OpenStep
Description forthcoming.
- (float)
tailIndent;
Availability: OpenStep
Description forthcoming.
Instance Variables for NSParagraphStyle Class
@protected NSTextAlignment _alignment;
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.
@protected NSWritingDirection _baseDirection;
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.
@protected float _firstLineHeadIndent;
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.
@protected float _headIndent;
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.
@protected NSLineBreakMode _lineBreakMode;
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.
@protected float _lineSpacing;
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.
@protected float _maximumLineHeight;
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.
@protected float _minimumLineHeight;
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.
@protected float _paragraphSpacing;
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.
@protected NSMutableArray* _tabStops;
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.
@protected float _tailIndent;
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.
- Declared in:
- AppKit/NSParagraphStyle.h
- Conforms to:
- NSCopying
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (id)
initWithType: (
NSTextTabType)type
location: (float)loc;
Availability: OpenStep
Description forthcoming.
- (float)
location;
Availability: OpenStep
Description forthcoming.
- (
NSTextTabType)
tabStopType;
Availability: OpenStep
Description forthcoming.
Instance Variables for NSTextTab Class
@protected float _location;
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.
@protected NSTextTabType _tabStopType;
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