Font.ToLogFont Method

Definition

Creates a GDI logical font (LOGFONT) structure from this Font.

Overloads

ToLogFont(LOGFONT)
ToLogFont(Object)

Creates a GDI logical font (LOGFONT) structure from this Font.

ToLogFont(LOGFONT, Graphics)
ToLogFont(Object, Graphics)

Creates a GDI logical font (LOGFONT) structure from this Font.

ToLogFont(LOGFONT)

public:
 void ToLogFont([Runtime::InteropServices::Out] System::Drawing::Interop::LOGFONT % logFont);
public void ToLogFont (out System.Drawing.Interop.LOGFONT logFont);
member this.ToLogFont : LOGFONT -> unit
Public Sub ToLogFont (ByRef logFont As LOGFONT)

Parameters

logFont
LOGFONT

Applies to

ToLogFont(Object)

Creates a GDI logical font (LOGFONT) structure from this Font.

public:
 void ToLogFont(System::Object ^ logFont);
public void ToLogFont (object logFont);
member this.ToLogFont : obj -> unit
Public Sub ToLogFont (logFont As Object)

Parameters

logFont
Object

An Object to represent the LOGFONT structure that this method creates.

Remarks

This method sets the logFont parameter to the results of the font conversion. For more information about logical fonts, see LOGFONT structure.

Applies to

ToLogFont(LOGFONT, Graphics)

public:
 void ToLogFont([Runtime::InteropServices::Out] System::Drawing::Interop::LOGFONT % logFont, System::Drawing::Graphics ^ graphics);
public void ToLogFont (out System.Drawing.Interop.LOGFONT logFont, System.Drawing.Graphics graphics);
member this.ToLogFont : LOGFONT * System.Drawing.Graphics -> unit
Public Sub ToLogFont (ByRef logFont As LOGFONT, graphics As Graphics)

Parameters

logFont
LOGFONT
graphics
Graphics

Applies to

ToLogFont(Object, Graphics)

Creates a GDI logical font (LOGFONT) structure from this Font.

public:
 void ToLogFont(System::Object ^ logFont, System::Drawing::Graphics ^ graphics);
public void ToLogFont (object logFont, System.Drawing.Graphics graphics);
member this.ToLogFont : obj * System.Drawing.Graphics -> unit
Public Sub ToLogFont (logFont As Object, graphics As Graphics)

Parameters

logFont
Object

An Object to represent the LOGFONT structure that this method creates.

graphics
Graphics

A Graphics that provides additional information for the LOGFONT structure.

Exceptions

graphics is null.

Remarks

This method sets the logFont parameter to the results of the font conversion. For more information about logical fonts, see LOGFONT structure.

Applies to