Spread Windows Forms 12.0 Product Documentation
Resizable Property (Row)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : Resizable Property
Gets or sets whether this row can be resized.
Syntax
'Declaration
 
Public Property Resizable As Boolean
'Usage
 
Dim instance As Row
Dim value As Boolean
 
instance.Resizable = value
 
value = instance.Resizable
public bool Resizable {get; set;}

Property Value

Boolean: true to allow the column to be resized; false otherwise
Example
This example specifies whether the row can be resized.
FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.Resizable = false;
Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.Resizable = False
See Also

Reference

Row Class
Row Members