12 references to BoldKey
System.Web.Mobile (12)
UI\MobileControls\Adapters\HtmlMobileTextWriter.cs (1)
539_bold = ((BooleanOption) style[Style.BoldKey, true] == BooleanOption.True);
UI\MobileControls\Adapters\WmlMobileTextWriter.cs (1)
1730BooleanOption bold = (BooleanOption)style[Style.BoldKey, true];
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (4)
152if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.True) { 155else if ((BooleanOption) _controlStyle[Style.BoldKey, true /* inherit */] == BooleanOption.False) { 208if ((BooleanOption)_controlStyle [Style.BoldKey, true] != (BooleanOption)style [Style.BoldKey, true]) {
UI\MobileControls\Design\Adapters\DesignerTextWriter.cs (1)
110bool bold = (BooleanOption)style[Style.BoldKey, true] == BooleanOption.True;
UI\MobileControls\Design\MobileContainerDesigner.cs (1)
181(BooleanOption)Style[Style.BoldKey, true] == BooleanOption.True;
UI\MobileControls\Style.cs (4)
95control.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.True; 103style.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.True; 534return (BooleanOption)this[BoldKey]; 538this[BoldKey] = value;