Spread Windows Forms 7.0 Product Documentation
GetRootWorkbook Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : GetRootWorkbook Method


Glossary Item Box

Gets the top view (SpreadView object).

Syntax

Visual Basic (Declaration) 
Public Function GetRootWorkbook() As SpreadView
Visual Basic (Usage)Copy Code
Dim instance As SpreadView
Dim value As SpreadView
 
value = instance.GetRootWorkbook()
C# 
public SpreadView GetRootWorkbook()

Return Value

Top or main workbook (SpreadView object)

Example

This example uses the GetRootWorkbook method.
C#Copy Code
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;
VB.NETCopy Code
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 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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