Sets the column width to the size of the largest text in the column.
Syntax
[JavaScript]
FpSpread1.SizeToFit();
Parameters
- columnIndex
- Integer, column index (optional)
Return Type
None
Remarks
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.
Example 1
This is a sample that contains the method.
JavaScript | Copy Code |
---|---|
<SCRIPT language=javascript>
function FitSpread()
{
FpSpread1.SizeToFit()
}
</SCRIPT>
|
Example 2
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> |