ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX.DirectWrite Namespace / GdiInterop Class / ToLogFont Method
An Font object to be converted into a GDI-compatible LOGFONT structure.
When this method returns, contains a structure that receives a GDI-compatible font description.

In This Topic
    ToLogFont Method
    In This Topic
    Initializes a LOGFONT structure based on the GDI-compatible properties of the specified font.
    Syntax
    'Declaration
     
    Public Function ToLogFont( _
       ByVal font As Font, _
       ByVal logFont As Object _
    ) As Boolean
    public bool ToLogFont( 
       Font font,
       object logFont
    )

    Parameters

    font
    An Font object to be converted into a GDI-compatible LOGFONT structure.
    logFont
    When this method returns, contains a structure that receives a GDI-compatible font description.

    Return Value

    TRUE if the specified font object is part of the system font collection; otherwise, FALSE.
    Remarks
    The conversion to a LOGFONT by using ConvertFontToLOGFONT operates at the logical font level and does not guarantee that it will map to a specific physical font. It is not guaranteed that GDI will select the same physical font for displaying text formatted by a LOGFONT as the Font object that was converted.
    See Also