Spread for ASP.NET 8.0 Product Documentation
MoveToSheetView(String) Method
Example 


Name of the new sheet view.
Moves the current chart to a new sheet view.
Syntax
'Declaration
 
Public Overloads Function MoveToSheetView( _
   ByVal sheetName As String _
) As Boolean
'Usage
 
Dim instance As SpreadChart
Dim sheetName As String
Dim value As Boolean
 
value = instance.MoveToSheetView(sheetName)
public bool MoveToSheetView( 
   string sheetName
)

Parameters

sheetName
Name of the new sheet view.

Return Value

true if move is successful; otherwise, returns false
Example
This example uses the MoveToSheetView method.
FpSpread1.Sheets.Count = 2;
FpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Web.Chart.BarSeries), 400, 400, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, true);
FarPoint.Web.Spread.Chart.SpreadChart chart = FpSpread1.Sheets[0].Charts[0];
chart.MoveToSheetView("Sheet2");
FpSpread1.Sheets.Count = 2
FpSpread1.Sheets(0).AddChart(0, 0, GetType(FarPoint.Web.Chart.BarSeries), 400, 400, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, True)
Dim chart As New FarPoint.Web.Spread.Chart.SpreadChart
chart = FpSpread1.Sheets(0).Charts(0)
chart.MoveToSheetView("Sheet2")
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SpreadChart Class
SpreadChart Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.