Up
Authors
- Scott Christley (
scottc@net-community.com
)
-
- Nicola Pero (
n.pero@mi.flashnet.it
)
-
Cell class for the text field entry control
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSTextFieldCell.h
- Conforms to:
- NSCoding
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (
NSColor*)
backgroundColor;
Availability: OpenStep
- (BOOL)
drawsBackground;
Availability: OpenStep
- (
NSAttributedString*)
placeholderAttributedString;
Availability: MacOS-X 10.3.0
Description forthcoming.
- (
NSString*)
placeholderString;
Availability: MacOS-X 10.3.0
Description forthcoming.
- (void)
setBackgroundColor: (
NSColor*)aColor;
Availability: OpenStep
Description forthcoming.
- (void)
setBezelStyle: (
NSTextFieldBezelStyle)style;
Availability: MacOS-X 10.2.0
Description forthcoming.
- (void)
setDrawsBackground: (BOOL)flag;
Availability: OpenStep
Sets whether the NSTextFieldCell draw its background
color
See Also:
-drawsBackground
- (void)
setPlaceholderAttributedString: (
NSAttributedString*)string;
Availability: MacOS-X 10.3.0
Description forthcoming.
- (void)
setPlaceholderString: (
NSString*)string;
Availability: MacOS-X 10.3.0
Description forthcoming.
- (void)
setTextColor: (
NSColor*)aColor;
Availability: OpenStep
Sets the text color to aColor
See Also:
-textColor
- (
NSColor*)
textColor;
Availability: OpenStep
Instance Variables for NSTextFieldCell Class
@protected NSColor* _background_color;
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 unsigned int _bezelStyle;
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 NSColor* _text_color;
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.
- Declared in:
- AppKit/NSTextFieldCell.h
Availability: OpenStep
Warning this category is private,
which means that the methods are for internal use by
the package. You should not use them in external code.
Method summary
- (void)
_drawBackgroundWithFrame: (
NSRect)cellFrame
inView: (
NSView*)controlView;
Availability: OpenStep
Warning the underscore at the start of the
name of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
Up