DataRepeater.DataSource Property

 

Gets or sets the data source for which the DataRepeater is displaying data.

Namespace:   Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

public object DataSource { get; set; }
public:
property Object^ DataSource {
    Object^ get();
    void set(Object^ value);
}
member DataSource : Object with get, set
Public Property DataSource As Object

Property Value

Type: System.Object

The object that contains data for the DataRepeater to display.

Remarks

Setting the DataSource property of the DataRepeater control has no effect. The DataSource properties of the child controls determine what is displayed at run time.

See Also

DataRepeater Class
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the DataRepeater Control (Visual Studio)
How to: Display Bound Data in a DataRepeater Control (Visual Studio)

Return to top