Font.ToLogFont Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a GDI logical font (LOGFONT
) structure from this Font.
Overloads
ToLogFont(LOGFONT) | |
ToLogFont(Object) |
Creates a GDI logical font ( |
ToLogFont(LOGFONT, Graphics) | |
ToLogFont(Object, Graphics) |
Creates a GDI logical font ( |
ToLogFont(LOGFONT)
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
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)
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
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
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)
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
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)
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
- Source:
- Font.cs
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
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.