WebGrid.Bind 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的資料系結至 WebGrid 實例。
public System.Web.Helpers.WebGrid Bind (System.Collections.Generic.IEnumerable<dynamic> source, System.Collections.Generic.IEnumerable<string> columnNames = default, bool autoSortAndPage = true, int rowCount = -1);
member this.Bind : seq<obj> * seq<string> * bool * int -> System.Web.Helpers.WebGrid
Public Function Bind (source As IEnumerable(Of Object), Optional columnNames As IEnumerable(Of String) = null, Optional autoSortAndPage As Boolean = true, Optional rowCount As Integer = -1) As WebGrid
參數
- source
- IEnumerable<Object>
要顯示的資料。
- columnNames
- IEnumerable<String>
包含要繫結之資料行名稱的集合。
- rowCount
- Int32
要在格線的每個頁面上顯示的資料列數目。
傳回
系結和填入 WebGrid 的實例。