AnchorEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
重要
この API は CLS 準拠ではありません。
Anchor プロパティを構成するためのユーザー インターフェイスを提供します。
public ref class AnchorEditor sealed : System::Drawing::Design::UITypeEditor
public sealed class AnchorEditor : System.Drawing.Design.UITypeEditor
[System.CLSCompliant(false)]
public sealed class AnchorEditor : System.Drawing.Design.UITypeEditor
type AnchorEditor = class
inherit UITypeEditor
[<System.CLSCompliant(false)>]
type AnchorEditor = class
inherit UITypeEditor
Public NotInheritable Class AnchorEditor
Inherits UITypeEditor
- 継承
- 属性
例
次のコード例では、an を EditorAttribute 使用してプロパティに AnchorEditor 関連付けます。
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;
[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;
<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
注釈
プロパティ AnchorEditor を構成するためのデザイン時ユーザー インターフェイスが Anchor 用意されています。 Anchorプロパティは、通常、コントロールがバインドされているコンテナーの側面を決定するために使用されます。 このクラスは、ユーザーがコントロールを固定するコンテナーの辺を指定できるようにするドロップダウン グラフィカル コントロールを提供します。
コンストラクター
AnchorEditor() |
AnchorEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |