DesignerAutoFormatCollection.Add(DesignerAutoFormat) Metodo

Definizione

Aggiunge l'oggetto DesignerAutoFormat specificato alla fine dell'insieme.

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

Parametri

Restituisce

Int32

Indice in base al quale il formato è stato aggiunto alla raccolta.

Esempio

Nell'esempio di codice seguente viene illustrato come creare e aggiungere DesignerAutoFormat oggetti alla AutoFormats proprietà di una finestra di progettazione personalizzata.

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

Commenti

Il Add metodo aggiunge l'oggetto specificato DesignerAutoFormat alla fine dell'insieme. Per aggiungere un DesignerAutoFormat oggetto alla raccolta in una posizione di indice specifica, utilizzare il Insert metodo .

Si applica a

Vedi anche