Up
Authors
- Ovidiu Predescu (
ovidiu@net-community.com
)
-
- Nicola Pero (
n.pero@mi.flashnet.it
)
-
The cell class for the NSForm control
Copyright: (C) 1996, 1999 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSFormCell.h
- Conforms to:
- NSCoding
Availability: OpenStep
Instance Variables
Method summary
- (
NSAttributedString*)
attributedTitle;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (
NSAttributedString*)
placeholderAttributedString;
Availability: MacOS-X 10.4.0
Description forthcoming.
- (
NSString*)
placeholderString;
Availability: MacOS-X 10.4.0
Description forthcoming.
- (void)
setAttributedTitle: (
NSAttributedString*)anAttributedString;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
setPlaceholderAttributedString: (
NSAttributedString*)string;
Availability: MacOS-X 10.4.0
Description forthcoming.
- (void)
setPlaceholderString: (
NSString*)string;
Availability: MacOS-X 10.4.0
Description forthcoming.
- (void)
setTitle: (
NSString*)aString;
Availability: OpenStep
Sets the NSFormCell title to aString.
TODO => _formcell_auto_title_width / Update the
control(s)
- (void)
setTitleAlignment: (NSTextAlignment)mode;
Availability: OpenStep
- (void)
setTitleBaseWritingDirection: (NSWritingDirection)writingDirection;
Availability: MacOS-X 10.4.0
Sets the writing direction of the NSFormCell's title
See Also:
-titleBaseWritingDirection:
[NSCell -setBaseWritingDirection]
- (void)
setTitleFont: (
NSFont*)fontObject;
Availability: OpenStep
- (void)
setTitleWidth: (
CGFloat)width;
Availability: OpenStep
Sets the width of the NSFormCell's title
to width. All NSFormCell of the NSForm are
updated
See Also:
-titleWidth
- (void)
setTitleWithMnemonic: (
NSString*)titleWithAmpersand;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (
NSString*)
title;
Availability: OpenStep
- (NSTextAlignment)
titleAlignment;
Availability: OpenStep
Returns the text alignment of the NSFormCell's
title. NSRightTextAlignment by default. See
NSTextAlignment for more informations
See Also:
-setTitleAlignment:
- (NSWritingDirection)
titleBaseWritingDirection;
Availability: MacOS-X 10.4.0
- (
NSFont*)
titleFont;
Availability: OpenStep
- (
CGFloat)
titleWidth;
Availability: OpenStep
Description forthcoming.
- (
CGFloat)
titleWidth: (
NSSize)aSize;
Availability: OpenStep
Description forthcoming.
Instance Variables for NSFormCell Class
@protected float _displayedTitleWidth;
Availability: OpenStep
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 id _placeholder;
Availability: OpenStep
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 NSCell* _titleCell;
Availability: OpenStep
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