38 references to True
System.Web.Mobile (38)
UI\MobileControls\Adapters\HtmlMobileTextWriter.cs (2)
539
_bold = ((BooleanOption) style[Style.BoldKey, true] == BooleanOption.
True
);
540
_italic = ((BooleanOption) style[Style.ItalicKey, true] == BooleanOption.
True
);
UI\MobileControls\Adapters\HtmlObjectListAdapter.cs (5)
452
(style.Font.Bold == BooleanOption.
True
) ? true : false;
630
_hasItemDetails = BooleanOption.
True
;
637
return _hasItemDetails == BooleanOption.
True
;
666
_onlyHasDefaultCommand = BooleanOption.
True
;
679
return _onlyHasDefaultCommand == BooleanOption.
True
;
UI\MobileControls\Adapters\HtmlTextViewAdapter.cs (2)
91
Style.Font.Bold = BooleanOption.
True
;
95
Style.Font.Italic = BooleanOption.
True
;
UI\MobileControls\Adapters\WmlMobileTextWriter.cs (2)
1731
Bold = (bold != BooleanOption.NotSet) ? bold == BooleanOption.
True
: currentFormat.Bold;
1733
Italic = (italic != BooleanOption.NotSet) ? italic == BooleanOption.
True
: currentFormat.Italic;
UI\MobileControls\Adapters\WmlObjectListAdapter.cs (4)
432
_hasItemDetails = BooleanOption.
True
;
439
return _hasItemDetails == BooleanOption.
True
;
468
_onlyHasDefaultCommand = BooleanOption.
True
;
481
return _onlyHasDefaultCommand == BooleanOption.
True
;
UI\MobileControls\Adapters\WmlTextViewAdapter.cs (2)
94
Style.Font.Bold = BooleanOption.
True
;
98
Style.Font.Italic = BooleanOption.
True
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicObjectListAdapter.cs (2)
166
_hasItemDetails = BooleanOption.
True
;
173
return _hasItemDetails == BooleanOption.
True
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicTextViewAdapter.cs (2)
79
Style.Font.Bold = BooleanOption.
True
;
82
Style.Font.Italic = BooleanOption.
True
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (2)
140
if ((BooleanOption) _controlStyle [Style.ItalicKey, true /* inherit */] == BooleanOption.
True
) {
152
if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.
True
) {
UI\MobileControls\Design\Adapters\DesignerTextWriter.cs (2)
110
bool bold = (BooleanOption)style[Style.BoldKey, true] == BooleanOption.
True
;
111
bool italic = (BooleanOption)style[Style.ItalicKey, true] == BooleanOption.
True
;
UI\MobileControls\Design\MobileContainerDesigner.cs (2)
181
(BooleanOption)Style[Style.BoldKey, true] == BooleanOption.
True
;
183
(BooleanOption)Style[Style.ItalicKey, true] == BooleanOption.
True
;
UI\MobileControls\Design\StylesEditorDialog.cs (2)
608
if (_previewStyle.Font.Bold == BooleanOption.
True
)
612
if (_previewStyle.Font.Italic == BooleanOption.
True
)
UI\MobileControls\ErrorFormatterPage.cs (1)
98
ctl.Font.Bold = BooleanOption.
True
;
UI\MobileControls\MobilePage.cs (3)
383
BooleanOption.
True
: BooleanOption.False;
385
return _allowCustomAttributes == BooleanOption.
True
;
390
_allowCustomAttributes = value ? BooleanOption.
True
: BooleanOption.False;
UI\MobileControls\Style.cs (4)
95
control.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.
True
;
96
control.Font.Italic = ((BooleanOption)this[ItalicKey, true]) == BooleanOption.
True
;
103
style.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.
True
;
104
style.Font.Italic = ((BooleanOption)this[ItalicKey, true]) == BooleanOption.
True
;
UI\MobileControls\StyleSheet.cs (1)
58
title.Bold = BooleanOption.
True
;