StatusBar.StatusBarPanelCollection.Insert(Int32, StatusBarPanel) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 StatusBarPanel를 컬렉션의 지정된 인덱스에 삽입합니다.
public:
virtual void Insert(int index, System::Windows::Forms::StatusBarPanel ^ value);
public virtual void Insert (int index, System.Windows.Forms.StatusBarPanel value);
abstract member Insert : int * System.Windows.Forms.StatusBarPanel -> unit
override this.Insert : int * System.Windows.Forms.StatusBarPanel -> unit
Public Overridable Sub Insert (index As Integer, value As StatusBarPanel)
매개 변수
- index
- Int32
패널이 삽입되는 위치의 0부터 시작하는 인덱스입니다.
- value
- StatusBarPanel
삽입할 패널을 나타내는 StatusBarPanel입니다.
예외
value
매개 변수가 null
인 경우
value
매개 변수의 부모가 null
이 아닌 경우
index
매개 변수가 0보다 작거나 Count 클래스의 StatusBar.StatusBarPanelCollection 속성 값보다 큰 경우
value
매개 변수 패널의 AutoSize 속성이 올바른 StatusBarPanelAutoSize 값이 아닌 경우
설명
컨트롤에 패널을 StatusBar 추가하여 둘 이상의 정보 유형을 표시할 수 있습니다. 이 Insert 메서드를 사용하면 새 StatusBarPanel 항목을 만들고 컬렉션 내의 특정 위치에 삽입할 수 있습니다. 패널이 있는 StatusBar.StatusBarPanelCollection 순서는 패널이 컨트롤 내에 표시되는 순서를 StatusBar 나타냅니다. 패널이 컬렉션의 첫 번째 패널부터 왼쪽에서 오른쪽으로 표시됩니다. 컨트롤의 StatusBar 속성은 RightToLeft 패널이 표시되는 StatusBar순서를 변경하지 않습니다. 컬렉션의 끝에 패널을 추가하려면 메서드를 Add 사용합니다. 단일 작업에서 컬렉션에 패널 집합을 추가하려면 이 메서드를 AddRange 사용합니다.