DesignerAutoFormatCollection.Add(DesignerAutoFormat) Método

Definición

Agrega el objeto especificado DesignerAutoFormat al final de la colección.

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

Parámetros

format
DesignerAutoFormat

Instancia de DesignerAutoFormat.

Devoluciones

Índice en el que se agregó el formato a la colección.

Ejemplos

En el ejemplo de código siguiente se muestra cómo crear y agregar DesignerAutoFormat objetos a la AutoFormats propiedad de un diseñador personalizado.

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

Comentarios

El Add método agrega el objeto especificado DesignerAutoFormat al final de la colección. Para agregar un DesignerAutoFormat objeto a la colección en una ubicación de índice específica, use el Insert método .

Se aplica a

Consulte también