FontEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
重要
この API は CLS 準拠ではありません。
Font オブジェクトを選択および設定するためのユーザー インターフェイスを提供します。
public ref class FontEditor : System::Drawing::Design::UITypeEditor
public class FontEditor : System.Drawing.Design.UITypeEditor
[System.Security.SecurityCritical]
public class FontEditor : System.Drawing.Design.UITypeEditor
[System.CLSCompliant(false)]
public class FontEditor : System.Drawing.Design.UITypeEditor
type FontEditor = class
inherit UITypeEditor
[<System.Security.SecurityCritical>]
type FontEditor = class
inherit UITypeEditor
[<System.CLSCompliant(false)>]
type FontEditor = class
inherit UITypeEditor
Public Class FontEditor
Inherits UITypeEditor
- 継承
- 属性
例
次のコード例では、 を EditorAttribute 使用して を FontEditor プロパティに関連付けます。
public:
[EditorAttribute(System::ComponentModel::Design::CollectionEditor::typeid,
System::Drawing::Design::UITypeEditor::typeid)]
property System::Drawing::Font^ testFont
{
System::Drawing::Font^ get()
{
return font;
}
void set( System::Drawing::Font^ value )
{
font = value;
}
}
private:
Font^ font;
[EditorAttribute(typeof(System.Drawing.Design.FontEditor), typeof(System.Drawing.Design.UITypeEditor))]
public Font testFont
{
get
{
return font;
}
set
{
font = value;
}
}
private Font font;
<EditorAttribute(GetType(System.Drawing.Design.FontEditor), GetType(System.Drawing.Design.UITypeEditor))> _
Public Property testFont() As Font
Get
Return font
End Get
Set
font = value
End Set
End Property
Private font As Font
注釈
FontEditor は、 UITypeEditor 使用可能なフォントの一覧から を選択および構成 Font するためのユーザー インターフェイスを提供する です。
コンストラクター
FontEditor() |
FontEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
メソッド
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET