Click or drag to resize

DataMappingTableResumeLayout Method

Resumes layout calculations, performs them and sets redraw to true and invalidates. Stacks the calls; only last one 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 ResumeLayout(
	bool bForce = false
)

Parameters

bForce  Boolean  (Optional)
 
See Also