|
Copyright © 2003-2005 MultiMedia Soft
Return to index
|
|
Parameter
|
Description
|
|
|
|
|
UniqueID
|
Numerical value representing the cell's unique identifier
|
|
lf
|
Address in memory of the the LOGFONT structure containing the font settings
The Managed C++ definition for the LOGFONT structure is as follows:
[StructLayout(LayoutKind::Sequential)]
__gc public class LOGFONT
{
public:
int lfHeight;
int lfWidth;
int lfEscapement;
int lfOrientation;
int lfWeight;
BYTE lfItalic;
BYTE lfUnderline;
BYTE lfStrikeOut;
BYTE lfCharSet;
BYTE lfOutPrecision;
BYTE lfClipPrecision;
BYTE lfQuality;
BYTE lfPitchAndFamily;
[MarshalAs(UnmanagedType::ByValTStr, SizeConst=32)]
String *lfFaceName;
};
Refer to the Microsoft documentation for details about the LOGFONT structure fields.
|
|
Value
|
Meaning
|
|
|
|
|
False
|
The operation failed
|
|
True
|
The operation was successful
|