次の方法で共有


DesignerAutoFormat.Name プロパティ

定義

DesignerAutoFormat オブジェクトの名前を取得します。

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

プロパティ値

DesignerAutoFormat 名です。

次のコード例では、オブジェクトの ControlDesigner プロパティをAutoFormatsオーバーライドして 3 つの名前付き書式を作成し、コレクションに追加する方法を示します。

// The collection of AutoFormat objects for the IndentLabel object
public override DesignerAutoFormatCollection AutoFormats
{
    get
    {
        if (_autoFormats == null)
        {
            // Create the collection
            _autoFormats = new DesignerAutoFormatCollection();

            // Create and add each AutoFormat object
            _autoFormats.Add(new IndentLabelAutoFormat("MyClassic"));
            _autoFormats.Add(new IndentLabelAutoFormat("MyBright"));
            _autoFormats.Add(new IndentLabelAutoFormat("Default"));
        }
        return _autoFormats;
    }
}
' The collection of AutoFormat objects for the IndentLabel object
Public Overrides ReadOnly Property AutoFormats() As DesignerAutoFormatCollection
    Get
        If _autoFormats Is Nothing Then
            ' Create the collection
            _autoFormats = New DesignerAutoFormatCollection()

            ' Create and add each AutoFormat object
            _autoFormats.Add(New IndentLabelAutoFormat("MyClassic"))
            _autoFormats.Add(New IndentLabelAutoFormat("MyBright"))
            _autoFormats.Add(New IndentLabelAutoFormat("Default"))
        End If

        Return _autoFormats
    End Get
End Property

注釈

Visual Studio 2005 などのビジュアル デザイナーは、 のコレクション内のControlDesignerDesignerAutoFormatオブジェクトの プロパティをAutoFormats使用Nameして、使用可能な自動スタイル形式の一覧を作成します。

適用対象

こちらもご覧ください