Returns all possible font sizes of a certain font.
public string[] GetFontSizes()
public string[] GetFontSizes(string fontFamily)
Parameter | Description |
---|---|
font |
Specifies the font the possible sizes of which are returned. It must be a font in the list of supported fonts which are returned through the Get |
The return value is the list of possible font sizes. Null is returned, if the specified font is not supported or if text is selected and the selection contains several different fonts.
The following examples in CSharp, VBNET and XAML show how to bind a combo box to the Font
private void cbFontSize_DropDownOpened(object sender, EventArgs e) {
cbFontSize.ItemsSource = textControl1.InputFormat.GetFontSizes();
}