Spread Windows Forms 9.0 Product Documentation
GetRootWorkbook Method (SpreadView)
Example 


Gets the top view (SpreadView object).
Syntax
'Declaration
 
Public Function GetRootWorkbook() As SpreadView
'Usage
 
Dim instance As SpreadView
Dim value As SpreadView
 
value = instance.GetRootWorkbook()
public SpreadView GetRootWorkbook()

Return Value

Top or main workbook (SpreadView object)
Example
This example uses the GetRootWorkbook method.
FarPoint.Win.Spread.SpreadView sv = new FarPoint.Win.Spread.SpreadView(fpSpread1);
sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0, 1);

int i;
i = sv.GetActiveRowViewportIndex();
sv.Sheets[0].Rows[i].BackColor = Color.Yellow;
Dim sv As New FarPoint.Win.Spread.SpreadView(FpSpread1)

sv = FpSpread1.GetRootWorkbook()
sv.AddViewport(0, 1)


Dim i As Integer
i = sv.GetActiveRowViewportIndex()

sv.Sheets(0).Rows(i).BackColor = Color.Yellow
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SpreadView Class
SpreadView Members

User-Task Documentation

Working with the Active Sheet

 

 


Copyright © GrapeCity, inc. All rights reserved.