MaxFontSize (C++)

From RAD Studio Code Examples
Jump to: navigation, search

Description

This example uses a Font dialog box, a button, and a label on a form. When you click the button, the Font dialog box appears. The available font sizes are within the range from 8 through 14. When you choose OK, the selected font is applied to the caption of the label.

Code

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  FontDialog1->Options.Clear();
  FontDialog1->Options << fdLimitSize;
  FontDialog1->MaxFontSize = 14;
  FontDialog1->MinFontSize = 8;
  if (FontDialog1->Execute())
    Label1->Font = FontDialog1->Font;
}

Uses