ListObject.SetDataBinding 메서드 (Object)
데이터 소스에 ListObject 컨트롤을 바인딩합니다.
네임스페이스: Microsoft.Office.Tools.Excel
어셈블리: Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)
구문
‘선언
Sub SetDataBinding ( _
dataSource As Object _
)
void SetDataBinding(
Object dataSource
)
매개 변수
- dataSource
형식: System.Object
ListObject 컨트롤의 데이터 소스로 사용할 개체입니다.
예외
예외 | 상황 |
---|---|
SetDataBindingFailedException | 지정된 데이터 소스에 바인딩할 수 없습니다. |
ArgumentException | 잘못된 인수입니다. |
ArgumentNullException | dataSource 인수가 nullNull 참조(Visual Basic의 경우 Nothing)인 경우 |
설명
데이터 소스는 DataTable이나 1차원 배열과 같은 IList, IListSource, IBindingList 또는 IEnumerable을 구현하는 개체일 수 있습니다.
예제
다음 코드 예제에서는 SetDataBinding 메서드를 사용하여 ListObject를 DataTable에 바인딩하는 방법을 보여 줍니다. DataTable에는 직원의 이름과 나이가 들어 있는 두 개의 열과 직원 항목을 나타내는 네 개의 행이 포함됩니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
Private Sub ListObject_SetDataBinding()
Dim Ages As Integer() = {32, 44, 28, 61}
Dim Names As String() = {"Reggie", "Sally", _
"Henry", "Christine"}
' Create a data table with two columns.
Dim table = New DataTable()
Dim column1 As New DataColumn("Names", GetType(String))
Dim column2 As New DataColumn("Ages", GetType(Integer))
table.Columns.Add(column1)
table.Columns.Add(column2)
' Add the four rows of data to the table.
Dim row As DataRow
Dim i As Integer
For i = 0 To 3
row = table.NewRow()
row("Names") = Names(i)
row("Ages") = Ages(i)
table.Rows.Add(row)
Next i
Dim List1 As Microsoft.Office.Tools.Excel.ListObject = _
Me.Controls.AddListObject(Me.Range("A1", "B4"), "List1")
' Bind the list object to the table.
List1.SetDataBinding(table)
End Sub
private void ListObject_SetDataBinding()
{
int[] Ages = { 32, 44, 28, 61 };
string[] Names = { "Reggie", "Sally", "Henry", "Christine" };
// Create a data table with two columns.
System.Data.DataTable table = new DataTable();
DataColumn column1 = new DataColumn("Names", typeof(string));
DataColumn column2 = new DataColumn("Ages", typeof(int));
table.Columns.Add(column1);
table.Columns.Add(column2);
// Add the four rows of data to the table.
DataRow row;
for (int i = 0; i < 4; i++)
{
row = table.NewRow();
row["Names"] = Names[i];
row["Ages"] = Ages[i];
table.Rows.Add(row);
}
Microsoft.Office.Tools.Excel.ListObject list1 =
this.Controls.AddListObject(this.Range["A1", "B4"], "list1");
// Bind the list object to the table.
list1.SetDataBinding(table);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.