'Declaration
Public Overrides Property Font As Font
'Usage
Dim instance As GcDateTime Dim value As Font instance.Font = value value = instance.Font
public override Font Font {get; set;}
'Declaration
Public Overrides Property Font As Font
'Usage
Dim instance As GcDateTime Dim value As Font instance.Font = value value = instance.Font
public override Font Font {get; set;}
The Font property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a System.Windows.Forms.Button will have the same System.Windows.Forms.Control.BackColor as its parent System.Windows.Forms.Form by default. For more information about ambient properties, see the System.Windows.Forms.AmbientProperties class or the System.Windows.Forms.Control class overview.
Because the Font is immutable (meaning that you cannot adjust any of its properties), you can only assign the Font property a new Font; however, you can base the new font on the existing font.