Temporarily suspends the layout logic for the Spread control.
Syntax
[JavaScript]
FpSpread1.SuspendLayout();
Return Type
None
Remarks
This method can be used with SetValue to enhance the performance by stopping the painting while setting values in the cells. Use the ResumeLayout method to resume the layout. This method does not cause a postback to occur.
Example 1
On the client side, the script that contains the method would look like this:
JavaScript | Copy Code |
---|---|
<SCRIPT language=javascript>
function ProfileSpread()
{
fpSpread1.SuspendLayout();
}
</SCRIPT>
|