다음을 통해 공유


DesignerAutoFormatCollection.Add(DesignerAutoFormat) 메서드

정의

컬렉션의 끝에 지정된 DesignerAutoFormat 개체를 추가합니다.

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

매개 변수

format
DesignerAutoFormat

DesignerAutoFormat의 인스턴스입니다.

반환

서식이 컬렉션에 추가된 위치의 인덱스입니다.

예제

다음 코드 예제를 만들고 추가 하는 방법을 보여 줍니다 DesignerAutoFormat 개체는 AutoFormats 사용자 지정 디자이너의 속성입니다.

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

설명

합니다 Add 메서드는 지정 된 추가 DesignerAutoFormat 개체 컬렉션의 끝입니다. 추가 하는 DesignerAutoFormat 개체를 사용 하 여 특정 인덱스 위치의 컬렉션에는 Insert 메서드.

적용 대상

추가 정보