GrapeCity.Win.Pickers 名前空間 : FontCharSet 列挙体 |
Public Enum FontCharSet Inherits System.Enum
public enum FontCharSet : System.Enum
メンバ | 解説 |
---|---|
Arabic | アラビア語文字セットを指定します。 |
Baltic | バルト語文字セットを指定します。 |
CentralEuropean | 中央ヨーロッパ文字セットを指定します。 |
Chinese_Simplified | 中国で使用される簡体字中国語(GB2312)文字セットを指定します。 |
Chinese_Traditional | 香港と台湾で使用される繁体字中国語文字セットを指定します。 |
Cyrillic | キリル文字セットを指定します。 |
EastEurope | 東ヨーロッパ文字セットを指定します。 |
Greek | ギリシア語文字セットを指定します。 |
Hangeul | 韓国語文字セットの別の一般的なスペルを指定します。 |
Hangul | 韓国語文字セットを指定します。 |
Hangul_Johab | 別の韓国語文字セットを指定します。 |
Hebrew | ヘブライ語文字セットを指定します。 |
Japanese | 日本語(Shift-JIS)文字セットを指定します。 |
MAC | Macintoshで使用される文字を指定します。 |
OEM | 拡張ASCII文字セットを指定します。 |
Other | その他の文字セットを指定します。 |
Russian | ロシア語文字セットを指定します。 |
Symbol | 記号文字セットを指定します。 |
Thai | タイ語文字セットを指定します。 |
Turkish | トルコ語文字セットを指定します。 |
Vietnamese | ベトナム語文字セットを指定します。 |
Western | 西ヨーロッパ文字セットを指定します。 |
次のサンプルコードは、この列挙体を使用して、GcFontPickerのドロップダウンリストのすべてのフォントグループに表示されるフォント名をフィルタリングする方法を示します。この例では、OpenTypeフォントのうち日本語文字セットと簡体字中国語文字セットをサポートするフォントのみをすべてのフォントグループに表示しています。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。
private void CreateGcFontPickerWithItemFilter() { // Create an instance of GcFontPicker control. GcFontPicker gcFontPicker = new GcFontPicker(); // Initialize the Name and Location of the gcFontPicker. gcFontPicker.Name = "gcFontPicker"; gcFontPicker.Location = new Point(10, 50); // Set ItemFilter. gcFontPicker.ItemFilter.FontTypes = FilterFontTypes.OpenTypeFont; gcFontPicker.ItemFilter.CharSets = new CharSetCollection(new FontCharSet[] { FontCharSet.Japanese , FontCharSet.Chinese_Simplified}); // adds gcFontPicker to the form. this.Controls.Add(gcFontPicker); }
Private Sub CreateGcFontPickerWithItemFilter() ' Create an instance of GcFontPicker control. Dim gcFontPicker As New GcFontPicker() ' Initialize the Name and Location of the gcFontPicker. gcFontPicker.Name = "gcFontPicker" gcFontPicker.Location = New Point(10, 50) ' Set ItemFilter. gcFontPicker.ItemFilter.FontTypes = FilterFontTypes.OpenTypeFont gcFontPicker.ItemFilter.CharSets = New CharSetCollection(New FontCharSet() {FontCharSet.Japanese, FontCharSet.Chinese_Simplified}) ' adds gcFontPicker to the form. Me.Controls.Add(gcFontPicker) End Sub
System.Object
System.ValueType
System.Enum
GrapeCity.Win.Pickers.FontCharSet
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2