SpeedButton3Click method |
Applies to
TForm4
Declaration
procedure SpeedButton3Click(Sender: TObject);Implementation
procedure TForm4.SpeedButton3Click(Sender: TObject); begin if FUpdating then Exit; if fsItalic in CurrText.Style then CurrText.Style := CurrText.Style - [fsUnderline] else CurrText.Style := CurrText.Style + [fsUnderline]; End; |
|