Style

<< Click to Display Table of Contents >>

 

Style

Text This property allows specifying a CSS (Cascade Style Sheet) style for a text, replacing the global style. This property's value must be a valid CSS String, otherwise this property is ignored. Default value of this property is an empty String (E3 uses operating system's default). Example:

Sub Report1_OnBeforePrint
  Label1.Style = "font-family: Times; font-weight: bold;_
    text-align: center; color: RGB(255, 255, 0)"
End Sub

Was this page useful?