AnchorEditor クラス
アセンブリ: System.Design (system.design.dll 内)


AnchorEditor は、Anchor プロパティを構成するためのデザイン時ユーザー インターフェイスを提供します。Anchor プロパティは、通常、コンテナのどちらの側にコントロールがバインドされているかを確認するために使用します。このクラスは、ユーザーがコンテナのどちらの側にコントロールを固定するかを指定するための、ドロップダウン グラフィカル コントロールを提供します。

EditorAttribute を使用して、AnchorEditor とプロパティを関連付けるコード例を次に示します。
<EditorAttribute(GetType(System.Windows.Forms.Design.AnchorEditor), GetType(System.Drawing.Design.UITypeEditor))> _ Public Property testAnchor() As System.Windows.Forms.AnchorStyles Get Return anchor End Get Set anchor = value End Set End Property Private anchor As AnchorStyles
[EditorAttribute(typeof(System.Windows.Forms.Design.AnchorEditor), typeof(System.Drawing.Design.UITypeEditor))] public System.Windows.Forms.AnchorStyles testAnchor { get { return anchor; } set { anchor = value; } } private AnchorStyles anchor;
public: [EditorAttribute(System::ComponentModel::Design::CollectionEditor::typeid, System::Drawing::Design::UITypeEditor::typeid)] property System::Windows::Forms::AnchorStyles testAnchor { System::Windows::Forms::AnchorStyles get() { return anchor; } void set( System::Windows::Forms::AnchorStyles value ) { anchor = value; } } private: AnchorStyles anchor;
/** @attribute EditorAttribute(System.Windows.Forms.Design.AnchorEditor. class, System.Drawing.Design.UITypeEditor.class) */ /** @property */ public System.Windows.Forms.AnchorStyles get_TestAnchor() { return anchor; } //get_TestAnchor /** @property */ public void set_TestAnchor(System.Windows.Forms.AnchorStyles value) { anchor = value; } //set_TestAnchor private AnchorStyles anchor;

System.Drawing.Design.UITypeEditor
System.Windows.Forms.Design.AnchorEditor


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からAnchorEditor クラスを検索する場合は、下記のリンクをクリックしてください。

- AnchorEditor クラスのページへのリンク