FONT Property values (OpenInsight)
At 23 AUG 2001 11:25:20AM Rick Todd wrote:
Back in May I asked:
I have been playing around with the FONT property and found in the Programmer's Reference Manual that it lists 12 values. But actually
the FONT property contains 16 values. So, does anyone know what the other 4 values represent? Are these in the right order?
Position Description
FaceName
Height
Weight
Italic
Underline
Width
CharSet
Pitch And Family
StrikeOut
OutPrecision
ClipPrecision
Quality
At 24 AUG 2001 07:19AM Oystein Reigem wrote:
Rick,
Here's something I once found in Delphi. It half agrees with you (14 items):
TLogFontA=packed recordlfHeight: Longint;lfWidth: Longint;lfEscapement: Longint;lfOrientation: Longint;lfWeight: Longint;lfItalic: Byte;lfUnderline: Byte;lfStrikeOut: Byte;lfCharSet: Byte;lfOutPrecision: Byte;lfClipPrecision: Byte;lfQuality: Byte;lfPitchAndFamily: Byte;lfFaceName: array0..LF_FACESIZE - 1 of AnsiChar;end;- Oystein -