Spread Windows Forms 6.0 Product Documentation
GetDataView Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > IDataSourceSupport Interface : GetDataView Method


create
Whether to re-create the DataView

Glossary Item Box

Gets the DataView object.

Syntax

Visual Basic (Declaration) 
Function GetDataView( _
   ByVal create As Boolean _
) As DataView
Visual Basic (Usage)Copy Code
Dim instance As IDataSourceSupport
Dim create As Boolean
Dim value As DataView
 
value = instance.GetDataView(create)
C# 
DataView GetDataView( 
   bool create
)

Parameters

create
Whether to re-create the DataView

Return Value

DataView object containing the view of the data table

Example

This example returns the name of the table in the DataView object.
C#Copy Code
FarPoint.Win.Spread.Model.IDataSourceSupport dss ;
DataTable dt = new DataTable("Testing");
DataView dv;
dt.Columns.Add("Number");
dt.Columns.Add("Letter");
dt.Rows.Add(new Object[] {"1", "One"});
dt.Rows.Add(new Object[] {"2", "Two"});
dss = (FarPoint.Win.Spread.Model.IDataSourceSupport)fpSpread1.ActiveSheet.Models.Data;
fpSpread1.DataSource = dt;
dv = dss.GetDataView(false);
label1.Text = "The name of the table in the data view is " + dv.Table.ToString();
Visual BasicCopy Code
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim dt As New DataTable("Testing")
Dim dv As DataView
dt.Columns.Add("Number")
dt.Columns.Add("Letter")
dt.Rows.Add(New Object() {"1", "One"})
dt.Rows.Add(New Object() {"2", "Two"})
dss = FpSpread1.ActiveSheet.Models.Data
FpSpread1.DataSource = dt
dv = dss.GetDataView(False)
Label1.Text = "The data view table is " & dv.Table().ToString()

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.