C# 클래스 Nexus.UI.FontSetGroup

A group of FontSets.
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 메소드들

메소드 설명
AddFontSet ( string p_strName, FontSet p_fstSet ) : void

Adds the given FontSet to the group.

This replaces any previous FontSet with the same name.

FontSetGroup ( ) : System

The default constructor.

FontSetGroup ( FontSet p_fstDefault ) : System

A simple constructor that initializes the object with the given values.

GetFontSet ( string p_strName ) : FontSet

Gets the requested FontSet.

HasFontSet ( string p_strName ) : bool

Determines if the group contains the specified FontSet.

RemoveFontSet ( string p_strName ) : void

Removes the specified FontSet from the group.

메소드 상세

AddFontSet() 공개 메소드

Adds the given FontSet to the group.
This replaces any previous FontSet with the same name.
public AddFontSet ( string p_strName, FontSet p_fstSet ) : void
p_strName string The name of the .
p_fstSet FontSet The .
리턴 void

FontSetGroup() 공개 메소드

The default constructor.
public FontSetGroup ( ) : System
리턴 System

FontSetGroup() 공개 메소드

A simple constructor that initializes the object with the given values.
public FontSetGroup ( FontSet p_fstDefault ) : System
p_fstDefault FontSet The default for the group.
리턴 System

GetFontSet() 공개 메소드

Gets the requested FontSet.
public GetFontSet ( string p_strName ) : FontSet
p_strName string The name of the to retrieve from the group.
리턴 FontSet

HasFontSet() 공개 메소드

Determines if the group contains the specified FontSet.
public HasFontSet ( string p_strName ) : bool
p_strName string The name of the whose existence the group is to be checked.
리턴 bool

RemoveFontSet() 공개 메소드

Removes the specified FontSet from the group.
public RemoveFontSet ( string p_strName ) : void
p_strName string The name of the to remove.
리턴 void