Text Settings in Windows Forms Radio Button (RadioButtonAdv)

29 Apr 20211 minute to read

This section discusses the text settings of the RadioButtonAdv.

Text in the RadioButtonAdv can be shadowed and wrapped as illustrated below.

RadioButtonAdv Properties Description
TextShadow Determines if the text shadow is visible.
ShadowColor Specifies the color of the text shadow.
ShadowOffset Specifies the offset of the text shadow.
WrapText Determines if the text in the CheckBoxAdv is wrapped.
this.radioButtonAdv1.TextShadow = true;
this.radioButtonAdv1.ShadowColor = System.Drawing.Color.Gold;
this.radioButtonAdv1.ShadowOffset = new System.Drawing.Point(8, 8);
Me.radioButtonAdv1.TextShadow = True
Me.radioButtonAdv1.ShadowColor = System.Drawing.Color.Gold
Me.radioButtonAdv1.ShadowOffset = New System.Drawing.Point(8, 8)

Windows forms RadioButtonAdv TextShadow applied