Spread Silverlight Documentation
ResetShrinkToFit Method (Row)
Example 


Resets the shrink to fit setting for the row and causes the row to inherit the shrink to fit setting from the default row.
Syntax
'Declaration
 
Public Sub ResetShrinkToFit() 
'Usage
 
Dim instance As Row
 
instance.ResetShrinkToFit()
public void ResetShrinkToFit()
Example
This example uses the ResetShrinkToFit method.
gcSpreadSheet1.ActiveSheet.Rows[1].Tag = "test";
gcSpreadSheet1.ActiveSheet.Rows[1].TabStop = false;
gcSpreadSheet1.ActiveSheet.Rows[1].ShrinkToFit = true;
gcSpreadSheet1.ActiveSheet.Cells[1, 0].Text = "Row with tags";
//gcSpreadSheet1.ActiveSheet.Rows[1].ResetTabStop();
//gcSpreadSheet1.ActiveSheet.Rows[1].ResetShrinkToFit();
GcSpreadSheet1.ActiveSheet.Rows(1).Tag = "test"
GcSpreadSheet1.ActiveSheet.Rows(1).TabStop = False
GcSpreadSheet1.ActiveSheet.Rows(1).ShrinkToFit = True
GcSpreadSheet1.ActiveSheet.Cells(1, 0).Text = "Row with tags"
'GcSpreadSheet1.ActiveSheet.Rows(1).ResetTabStop()
'GcSpreadSheet1.ActiveSheet.Rows(1).ResetShrinkToFit()
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Row Class
Row Members

 

 


Copyright © GrapeCity, inc. All rights reserved.