NSTextField Bindings
Availability Bindings
editable
A multiple-value binding that determines if the NSTextField
is editable in the user interface.
When editable
is bound, a new binding, editable2
, is exposed and can be bound. Binding to editable2
causes editable3
to be exposed, and so on.
The contents of the NSTextField
are editable if a logical AND operation on all the editable
bindings results in a Boolean value of YES
.
enabled
A multiple-value binding that determines if the NSTextField
is enabled in the user interface.
When enabled
is bound, a new binding, enabled2
, is exposed and can be bound. Binding to enabled2
causes enabled3
to be exposed, and so on.
The NSTextField
is enabled if a logical AND operation on all the enabled
bindings results in a Boolean value of YES
.
hidden
A multiple-value binding that determines if the NSTextField
is displayed in the user interface.
When hidden
is bound, a new binding, hidden2
, is exposed and can be bound. Binding to hidden2
causes hidden3
to be exposed, and so on.
The NSTextField
is hidden if a logical OR operation on all the hidden
bindings results in a Boolean value of YES
.
Font Bindings
font
An NSFont used to display the NSTextField
.
If font
is bound, all other Font category bindings are disabled.
fontBold
A Boolean value that determines if the NSFont used to display the NSTextField
is bold. If fontBold
evaluates to YES
, the bold attribute is added to the font.
If fontBold
is bound, the font
and fontName
bindings are disabled.
fontFamilyName
An NSString that specifies the family name of the NSFont used to display the contents of the NSTextField
.
If fontFamilyName
is bound to a key, the font
and fontName
bindings are disabled.
fontItalic
A Boolean value that determines if the NSFont used to display the NSTextField
is italic. If fontItalic
evaluates to YES
, the italic attribute is added to the font.
If fontItalic
is bound, the font
and fontName
bindings are disabled.
fontName
An NSString that specifies the full name of the NSFont that is used to display the contents of the NSTextField
. The full font name includes the family and the style of the font — for example, "Helvetica-Bold".
If fontName
bound to a key, the font
, fontBold
, fontFamilyName
and fontItalic
bindings are disabled.
fontSize
An integer value that determines the size, in points, of the font used to display the NSTextField
.
If fontSize
is bound, the font
binding is disabled.
Parameters Bindings
alignment
An integer value that specifies the alignment of the content displayed in the NSTextField
.
A value of 0
indicates that the content is left aligned, 1
that it is right aligned, and 2
that is it centered.
toolTip
An NSString that contains the tool tip to display for this NSTextField
.
Text Color Bindings
textColor
An NSColor that specifies the color used to display the text of the NSTextField
.
Value Bindings
value
An NSString or NSNumber that is displayed as the content of the NSTextField
.
Value With Pattern Bindings
displayPatternValue1
A multiple-value binding that specifies a string value that replaces %{value1}@
in a display pattern string that is used to set the value of the NSTextField
.
When displayPatternValue1
is bound, a new binding, displayPatternValue2
, is exposed and can be bound. Binding to displayPatternValue2
causes displayPatternValue3
to be exposed, and so on.
The Display Pattern binding option is an NSString that is used as the pattern string. The appropriate displayPatternValueX
binding value is substituted for the %{valueX}@
pattern in the display string.
As an example, if displayPatternValue1
evaluates to 22
, displayPatternValue2
evaluates to 5
and the Display Pattern string is "%{value2}@ of %{value1}@ rows are selected"
, the resulting value will be "5 of 22 rows are selected".
If displayPatternValue1
is bound, the value
binding is not available.
Copyright © 2004, 2014 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2014-07-15