Font.FromLogFont 메서드

정의

Font 지정된 GDI 논리 글꼴(LOGFONT) 구조체에서 를 만듭니다.

오버로드

FromLogFont(LOGFONT, IntPtr)
FromLogFont(Object, IntPtr)

Font 지정된 GDI 논리 글꼴(LOGFONT) 구조체에서 를 만듭니다.

FromLogFont(LOGFONT)
FromLogFont(Object)

Font 지정된 GDI 논리 글꼴(LOGFONT) 구조체에서 를 만듭니다.

FromLogFont(LOGFONT, IntPtr)

Source:
Font.cs
Source:
Font.cs
public:
 static System::Drawing::Font ^ FromLogFont(System::Drawing::Interop::LOGFONT % logFont, IntPtr hdc);
public static System.Drawing.Font FromLogFont (in System.Drawing.Interop.LOGFONT logFont, IntPtr hdc);
static member FromLogFont : LOGFONT * nativeint -> System.Drawing.Font
Public Shared Function FromLogFont (ByRef logFont As LOGFONT, hdc As IntPtr) As Font

매개 변수

logFont
LOGFONT
hdc
IntPtr

nativeint

반환

적용 대상

FromLogFont(Object, IntPtr)

Source:
Font.cs
Source:
Font.cs
Source:
Font.cs

Font 지정된 GDI 논리 글꼴(LOGFONT) 구조체에서 를 만듭니다.

public:
 static System::Drawing::Font ^ FromLogFont(System::Object ^ lf, IntPtr hdc);
public static System.Drawing.Font FromLogFont (object lf, IntPtr hdc);
static member FromLogFont : obj * nativeint -> System.Drawing.Font
Public Shared Function FromLogFont (lf As Object, hdc As IntPtr) As Font

매개 변수

lf
Object

Object 를 만들 GDI LOGFONT 구조를 나타내는 입니다Font.

hdc
IntPtr

nativeint

lf 구조체에 대한 추가 정보가 들어 있는 디바이스 컨텍스트 핸들입니다.

반환

이 메서드가 만드는 Font입니다.

예외

글꼴이 트루타입 글꼴이 아닌 경우

설명

GDI LOGFONT또는 논리 글꼴은 특정 글꼴을 설명하는 14개의 속성을 포함하는 구조체입니다.

적용 대상

FromLogFont(LOGFONT)

Source:
Font.cs
Source:
Font.cs
public:
 static System::Drawing::Font ^ FromLogFont(System::Drawing::Interop::LOGFONT % logFont);
public static System.Drawing.Font FromLogFont (in System.Drawing.Interop.LOGFONT logFont);
static member FromLogFont : LOGFONT -> System.Drawing.Font
Public Shared Function FromLogFont (ByRef logFont As LOGFONT) As Font

매개 변수

logFont
LOGFONT

반환

적용 대상

FromLogFont(Object)

Source:
Font.cs
Source:
Font.cs
Source:
Font.cs

Font 지정된 GDI 논리 글꼴(LOGFONT) 구조체에서 를 만듭니다.

public:
 static System::Drawing::Font ^ FromLogFont(System::Object ^ lf);
public static System.Drawing.Font FromLogFont (object lf);
static member FromLogFont : obj -> System.Drawing.Font
Public Shared Function FromLogFont (lf As Object) As Font

매개 변수

lf
Object

Object 를 만들 GDI LOGFONT 구조를 나타내는 입니다Font.

반환

이 메서드가 만드는 Font입니다.

설명

GDI LOGFONT또는 논리 글꼴은 특정 글꼴을 설명하는 14개의 속성을 포함하는 구조체입니다.

적용 대상