Click or drag to resize

DataMappingTableSuspendLayout Method

Suspends layout calculations and sets redarw to false. Stacks the calls; only first is effective!
You MUST call ResumeLayout(Boolean) as many times as you call SuspendLayout.
Use pattern such as
C#
try
{
  SuspendLayout();

  ...TODO: your other code...

}
finally
{
  ResumeLayout();
}
...or use UIAction(Action, Boolean) / UIActionT(FuncT, Boolean) wrappers!

Namespace: CTExtensions.ExportCore.Config.DataMapping
Assembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntax
public void SuspendLayout()
See Also