|
|
|
|
|
Orientation (Property) In french: Angle
The Orientation property is used to: - Get the angle (in degrees) of a Font variable.
- Modify the angle (in degrees) of a Font variable.
Remark: The angle is calculated counterclockwise from an horizontal line (trigonometric direction).
Font1 is Font
Font1.Name = "Arial"
Font1.Color = LightYellow
Font1.Size = 14
Font1.SizeUnit = unitPoint
Font1.Orientation = 45
MyControl.Font = Font1
Syntax
Getting the angle of a Font variable Hide the details
<Result> = <Font name>.Orientation
<Result>: Integer Angle (in degrees) of the specified Font variable. <Font name>: Font Name of the Font variable to be used.
Modifying the angle of a Font variable Hide the details
<Font name>.Orientation = <New angle>
<Font name>: Font Name of the Font variable to be used. <New angle>: Integer New angle (in degrees) for the specified Font variable. Remarks A font can be created from a Font variable. To define the font characteristics, use: - the FontCreate function.
- the Charset, Orientation, StrikeOut, Color, Bold, Italic, CharacterSpacing, LineSpacing, Name, Underline, Size and SizeUnit properties.
Only the following properties can be used with the Font type: Orientation, StrikeOut, Color, Bold, Italic, Name, Underline, Size.
This font can be used: Orientation is ignored when a font is assigned to a window control. For example, if the MyFont Font variable has the following characteristics: Size 12, Arial, 45º angle, only the first two characteristics will be taken into account when the values are assigned as follows:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|