DesignerDataSourceView.GetDesignTimeData(Int32, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的行数生成与关联数据源控件的架构相匹配的设计时数据,以指示其返回示例数据还是实时数据。
public:
virtual System::Collections::IEnumerable ^ GetDesignTimeData(int minimumRows, [Runtime::InteropServices::Out] bool % isSampleData);
public virtual System.Collections.IEnumerable GetDesignTimeData (int minimumRows, out bool isSampleData);
abstract member GetDesignTimeData : int * bool -> System.Collections.IEnumerable
override this.GetDesignTimeData : int * bool -> System.Collections.IEnumerable
Public Overridable Function GetDesignTimeData (minimumRows As Integer, ByRef isSampleData As Boolean) As IEnumerable
参数
- minimumRows
- Int32
要返回的最小行数。
- isSampleData
- Boolean
true
指示返回的数据为示例数据;false
指示返回的数据为实时数据。
返回
一个 DataSourceView 对象,它包含要在设计时显示的数据。
示例
有关将 方法用于视图、架构和数据源设计器的完整示例 GetDesignTimeData ,请参阅 DataSourceDesigner。