 | 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
try
{
SuspendLayout();
...TODO: your other code...
}
finally
{
ResumeLayout();
}
...or use
UIAction(Action, Boolean) /
UIActionT(FuncT, Boolean) wrappers!
Namespace: CTExtensions.ExportCore.Config.DataMappingAssembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntaxpublic void ResumeLayout(
bool bForce = false
)
Public Sub ResumeLayout (
Optional bForce As Boolean = false
)
Parameters
- bForce Boolean (Optional)
-
See Also