Spread Windows Forms 12.0 Product Documentation
Owner Property (SpreadView)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : Owner Property
Gets the FpSpread object that owns this view.
Syntax
'Declaration
 
Public ReadOnly Property Owner As FpSpread
'Usage
 
Dim instance As SpreadView
Dim value As FpSpread
 
value = instance.Owner
public FpSpread Owner {get;}

Property Value

FpSpread object that owns this view
Example
This example sets the Owner property.
FarPoint.Win.Spread.SpreadView sv;
sv = fpSpread1.GetRootWorkbook();
sv.Owner.ActiveSheet.Cells[0, 0].BackColor = Color.Red;
Dim sv As FarPoint.Win.Spread.SpreadView
sv = fpSpread1.GetRootWorkbook()
sv.Owner.ActiveSheet.Cells(0, 0).BackColor = Color.Red
See Also

Reference

SpreadView Class
SpreadView Members