Freigeben über


DesignerAutoFormatCollection.Add(DesignerAutoFormat) Methode

Definition

Fügt das angegebene DesignerAutoFormat-Objekt am Ende der Auflistung hinzu.

public:
 int Add(System::Web::UI::Design::DesignerAutoFormat ^ format);
public int Add (System.Web.UI.Design.DesignerAutoFormat format);
member this.Add : System.Web.UI.Design.DesignerAutoFormat -> int
Public Function Add (format As DesignerAutoFormat) As Integer

Parameter

format
DesignerAutoFormat

Eine Instanz von DesignerAutoFormat.

Gibt zurück

Int32

Der Index, an dem das Format der Auflistung hinzugefügt wurde.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Sie Objekte zur AutoFormats Eigenschaft eines benutzerdefinierten Designers erstellen und hinzufügenDesignerAutoFormat.

// 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

Hinweise

Die Add Methode fügt dem Ende der Auflistung das angegebene DesignerAutoFormat Objekt hinzu. Verwenden Sie die Insert Methode, um der Auflistung an einem bestimmten Indexspeicherort ein DesignerAutoFormat Objekt hinzuzufügen.

Gilt für

Siehe auch