10 references to CFE_BOLD
System.Windows.Forms (2)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
2173
if ((cf.dwMask & CFM_MASK.CFM_BOLD) != 0 && (cf.dwEffects & CFE_EFFECTS.
CFE_BOLD
) != 0)
2725
dwEffects |= CFE_EFFECTS.
CFE_BOLD
;
System.Windows.Forms.Tests (8)
System\Windows\Forms\RichTextBoxTests.cs (8)
1584
yield return new object[] { "Arial", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 1, 165, CFE_EFFECTS.
CFE_BOLD
};
1588
yield return new object[] { "Arial", 8.25f, FontStyle.Bold | FontStyle.Italic | FontStyle.Regular | FontStyle.Strikeout | FontStyle.Underline, GraphicsUnit.Point, 10, 165, CFE_EFFECTS.
CFE_BOLD
| CFE_EFFECTS.CFE_ITALIC | CFE_EFFECTS.CFE_UNDERLINE | CFE_EFFECTS.CFE_STRIKEOUT };
4716
yield return new object[] { CFM_MASK.CFM_BOLD, CFE_EFFECTS.
CFE_BOLD
, 0, arial, "Arial", 13, FontStyle.Bold };
4717
yield return new object[] { CFM_MASK.CFM_BOLD, CFE_EFFECTS.
CFE_BOLD
| CFE_EFFECTS.CFE_ALLCAPS, 0, arial, "Arial", 13, FontStyle.Bold };
4728
yield return new object[] { CFM_MASK.CFM_ALLCAPS, CFE_EFFECTS.
CFE_BOLD
, 0, arial, "Arial", 13, FontStyle.Regular };
4729
yield return new object[] { CFM_MASK.CFM_ALLCAPS, CFE_EFFECTS.
CFE_BOLD
| CFE_EFFECTS.CFE_ALLCAPS, 0, arial, "Arial", 13, FontStyle.Regular };
4918
yield return new object[] { new Font("Arial", 8.25f, FontStyle.Bold), 165, CFE_EFFECTS.
CFE_BOLD
};
4922
yield return new object[] { new Font("Arial", 8.25f, FontStyle.Bold | FontStyle.Italic | FontStyle.Regular | FontStyle.Strikeout | FontStyle.Underline, GraphicsUnit.Point, 10), 165, CFE_EFFECTS.
CFE_BOLD
| CFE_EFFECTS.CFE_ITALIC | CFE_EFFECTS.CFE_UNDERLINE | CFE_EFFECTS.CFE_STRIKEOUT };