Spread ASP.NET 6.0 Product Documentation
SuspendLayout
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > SuspendLayout

Glossary Item Box

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>

See Also

SetValue | ResumeLayout | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.