PowerTools PlusPak for Windows Forms 8.0J
FontInfoFilter クラス
メンバ  使用例 

GcFontPickerコントロールの選択可能なフォントをフィルタリングするために使用されるクラスを定義します。
構文
Public Class FontInfoFilter 
public class FontInfoFilter 
解説
通常このクラスは、GcFontPicker.ItemFilterプロパティにアクセスすることによって使用します。FontInfoFilterクラスには、関連付けられたGcFontPickerコントロールの選択可能なフォントをフィルタリングするために2つのプロパティが用意されています。 また、FontTypesプロパティとCharSetsプロパティを組み合わせてフォントをフィルタリングすることもできます。たとえば、GcFontPickerを作成する際に、そのGcFontPicker.ItemFilterFontTypesFilterFontTypes.OpenTypeFontに設定し、さらにGcFontPicker.ItemFilterCharSetsを、FontCharSet.JapaneseFontCharSetを含むCharSetCollectionのインスタンスに設定した場合、GcFontPickerGcFontPicker.AllFontsコレクションには、OpenTypeでなおかつFontCharSet.Japanese文字セットをサポートするすべてのフォントが格納され、それらのフォントの名前がドロップダウンリストに表示されます。
使用例

次のサンプルコードは、GcFontPicker.ItemFilterを使用して、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
   GrapeCity.Win.Pickers.FontInfoFilter

プラットフォーム

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

参照

FontInfoFilter メンバ
GrapeCity.Win.Pickers 名前空間
GcFontPicker クラス
ItemFilter プロパティ
AllFonts プロパティ
FilterFontTypes 列挙体
CharSetCollection クラス
GcFontPicker クラス
ItemFilter プロパティ
AllFonts プロパティ
FilterFontTypes 列挙体
CharSetCollection クラス

Send Feedback