Sets or returns the Font object that defines the font for this style.
<p> public Font Font{ get; set; }</p>
<p>Public Property Font() As Font</p>
//--- Get Font Font fnt = styl.Font; //--- Set Font styl.Font = fnt;
'--- Get Font Dim fnt As Font = styl.Font '--- Set Font styl.Font = fnt