Spread Windows Forms 9.0 Product Documentation
Default Property (Rows)
Example 


Gets a row for the default row (-1).
Syntax
'Declaration
 
Public ReadOnly Property Default As Rows.DefaultRow
'Usage
 
Dim instance As Rows
Dim value As Rows.DefaultRow
 
value = instance.Default
public Rows.DefaultRow Default {get;}

Property Value

Rows.DefaultRow object containing the row defaults
Remarks
The defaults for style properties (such as BackColor, Font, etc.) for the rows are getting and setting the corresponding property in the DefaultRow.Parent.ParentDefaultStyle object. For example, the SheetView.Rows.Default.BackColor actually gets and sets SheetView.DefaultSytle.BackColor, which is equivalent to SheetView.Rows.Default.Parent.Parent.DefaultStyle.BackColor.
Example
This example changes the background color of all the rows in the active sheet.
fpSpread1.ActiveSheet.Rows.Default.BackColor = Color.Yellow;
FpSpread1.ActiveSheet.Rows.Default.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

Rows Class
Rows Members

 

 


Copyright © GrapeCity, inc. All rights reserved.