| Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > SizeToFit | 
Sets the column width to the size of the largest text in the column.
[JavaScript]
FpSpread1.SizeToFit();
None
This method sets the width of each column to the maximum text width in that column. The optional columnIndex parameter allows the width to be set for a specific column. This method does not cause a postback to occur.
This is a sample that contains the method.
| JavaScript | 
                     
                        Copy Code
                     
                 | 
            
|---|---|
                    
<SCRIPT language=javascript>
   function FitSpread()
   {
      FpSpread1.SizeToFit()
   }
</SCRIPT>
                 | 
            |
This is a sample that uses the method.
| JavaScript | 
                     
                        Copy Code
                     
                 | 
            
|---|---|
                    <SCRIPT language=javascript> function FitSpread() { var s=document.getElementById("FpSpread1"); if(document.all) s.SizeToFit(s.ActiveCol); else s.SizeToFit(s.GetActiveCol()); } </SCRIPT>  | 
            |