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; 637return _hasItemDetails == BooleanOption.True; 666_onlyHasDefaultCommand = BooleanOption.True; 679return _onlyHasDefaultCommand == BooleanOption.True;
UI\MobileControls\Adapters\HtmlTextViewAdapter.cs (2)
91Style.Font.Bold = BooleanOption.True; 95Style.Font.Italic = BooleanOption.True;
UI\MobileControls\Adapters\WmlMobileTextWriter.cs (2)
1731Bold = (bold != BooleanOption.NotSet) ? bold == BooleanOption.True : currentFormat.Bold; 1733Italic = (italic != BooleanOption.NotSet) ? italic == BooleanOption.True : currentFormat.Italic;
UI\MobileControls\Adapters\WmlObjectListAdapter.cs (4)
432_hasItemDetails = BooleanOption.True; 439return _hasItemDetails == BooleanOption.True; 468_onlyHasDefaultCommand = BooleanOption.True; 481return _onlyHasDefaultCommand == BooleanOption.True;
UI\MobileControls\Adapters\WmlTextViewAdapter.cs (2)
94Style.Font.Bold = BooleanOption.True; 98Style.Font.Italic = BooleanOption.True;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicObjectListAdapter.cs (2)
166_hasItemDetails = BooleanOption.True; 173return _hasItemDetails == BooleanOption.True;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicTextViewAdapter.cs (2)
79Style.Font.Bold = BooleanOption.True; 82Style.Font.Italic = BooleanOption.True;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (2)
140if ((BooleanOption) _controlStyle [Style.ItalicKey, true /* inherit */] == BooleanOption.True) { 152if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.True) {
UI\MobileControls\Design\Adapters\DesignerTextWriter.cs (2)
110bool bold = (BooleanOption)style[Style.BoldKey, true] == BooleanOption.True; 111bool 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)
608if (_previewStyle.Font.Bold == BooleanOption.True) 612if (_previewStyle.Font.Italic == BooleanOption.True)
UI\MobileControls\ErrorFormatterPage.cs (1)
98ctl.Font.Bold = BooleanOption.True;
UI\MobileControls\MobilePage.cs (3)
383BooleanOption.True : BooleanOption.False; 385return _allowCustomAttributes == BooleanOption.True; 390_allowCustomAttributes = value ? BooleanOption.True : BooleanOption.False;
UI\MobileControls\Style.cs (4)
95control.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.True; 96control.Font.Italic = ((BooleanOption)this[ItalicKey, true]) == BooleanOption.True; 103style.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.True; 104style.Font.Italic = ((BooleanOption)this[ItalicKey, true]) == BooleanOption.True;
UI\MobileControls\StyleSheet.cs (1)
58title.Bold = BooleanOption.True;