Aracılığıyla paylaş


ControlExtensions.AddCheckedListBox Yöntem (ControlCollection, Single, Single, Single, Single, String)

Yeni bir ekler CheckedListBox denetlemek için belge içinde belirtilen boyut ve konumu.

Ad alanı:  Microsoft.Office.Tools.Word
Derleme:  Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll içinde)

Sözdizimi

'Bildirim
<ExtensionAttribute> _
Public Shared Function AddCheckedListBox ( _
    controls As ControlCollection, _
    left As Single, _
    top As Single, _
    width As Single, _
    height As Single, _
    name As String _
) As CheckedListBox
public static CheckedListBox AddCheckedListBox(
    this ControlCollection controls,
    float left,
    float top,
    float width,
    float height,
    string name
)

Parametreler

  • left
    Tür: System.Single
    Nokta belgenin sol kenarında denetimin sol kenarı arasındaki uzaklık.
  • top
    Tür: System.Single
    Nokta denetimin üst kenarı ve belgenin üst kenarı arasındaki uzaklık.
  • width
    Tür: System.Single
    Nokta cinsinden denetimin genişliği.
  • height
    Tür: System.Single
    Nokta cinsinden denetimin yüksekliği.

Dönüş Değeri

Tür: Microsoft.Office.Tools.Word.Controls.CheckedListBox
Belgeye eklenmiş olan denetim.

Kullanım Notu

Visual Basic ve C# programlarında, bu yöntemi ControlCollection türündeki herhangi bir nesne üzerinde örnek yöntemi olarak çağırabilirsiniz. Bu yöntemi çağırmak için örnek yöntemi sözdizimini kullandığınızda, ilk parametreyi yok sayın. Daha fazla bilgi için bkz. Uzantı Yöntemleri (Visual Basic) veya Genişletme Yöntemleri (C# Programlama Kılavuzu).

Özel Durumlar

Exception Koşul
ArgumentNullException

name Bağımsız değişkeni nullnull başvuru (Visual Basic'te Nothing) veya sıfır uzunlukta.

ControlNameAlreadyExistsException

Aynı ada sahip bir denetim zaten kullanılıyor ControlCollection örneği.

Notlar

Bu yöntem eklemenize olanak sağlayan CheckedListBox nesneleri sonuna kadar ControlCollection.

Kaldırmak için bir CheckedListBox programlı olarak eklenen, kullanın Remove yöntem.

Örnekler

Aşağıdaki kod örneği ekler bir CheckedListBox kontrol belgenin başlangıcına, iki madde işaretli liste kutusuna ekler ve ardından seçer İlk madde onay kutusu.Bu örneği kullanmak için çalıştırın ThisDocument bir belge düzeyi projesinde sınıf.

Private Sub WordAddCheckedListBox()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim CheckedListBox1 As Microsoft.Office.Tools.Word. _
        Controls.CheckedListBox = Me.Controls.AddCheckedListBox( _
        0, 0, 90, 66.75F, "CheckedListBox1")
    CheckedListBox1.Items.Add("First Item")
    CheckedListBox1.Items.Add("Second Item")
    CheckedListBox1.SetItemChecked(0, True)
End Sub 
private void WordAddCheckedListBox()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Controls.CheckedListBox
        checkedListBox1 = this.Controls.AddCheckedListBox(
        0, 0, 90, 66.75F, "checkedListBox1");
    checkedListBox1.Items.Add("First Item");
    checkedListBox1.Items.Add("Second Item");
    checkedListBox1.SetItemChecked(0, true);
}

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

ControlExtensions Sınıf

AddCheckedListBox Fazla Yük

Microsoft.Office.Tools.Word Ad Alanı