Spread Windows Forms 12.0 Product Documentation
IsFixedSize Property (SheetViewCollection)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetViewCollection Class : IsFixedSize Property
Gets whether the collection has a fixed size. (This implementation always returns false.)
Syntax
'Declaration
 
Public ReadOnly Property IsFixedSize As Boolean
'Usage
 
Dim instance As SheetViewCollection
Dim value As Boolean
 
value = instance.IsFixedSize
public bool IsFixedSize {get;}

Property Value

Booleantrue if the number of sheets is fixed; false otherwise
Example
This example moves a sheet from the specified location.
fpSpread1.Sheets.Count = 5; 
FarPoint.Win.Spread.SheetViewCollection sheet; 
sheet = fpSpread1.Sheets; 
sheet.Move(0, 2);
FpSpread1.Sheets.Count = 5
Dim sheet As FarPoint.Win.Spread.SheetViewCollection
sheet = FpSpread1.Sheets
sheet.Move(0, 2)
See Also

Reference

SheetViewCollection Class
SheetViewCollection Members