Click or drag to resize

IMcView3DBeginBlockUpdate Method

Enables/Disables 3D viewer update during block operations.

Namespace:  MediaCy.IQL.Display.Viewer3D
Assembly:  MediaCy.IQL.Display.Viewer3D (in MediaCy.IQL.Display.Viewer3D.dll) Version: 10.0.6912.0
Syntax
VB
Sub BeginBlockUpdate ( 
	newVal As Boolean
)

Parameters

newVal
Type: SystemBoolean
Remarks
Call this function to disable updates setting multiple parameters. Every call BeginUpdateBlock TRUE must be followed by BeginUpdateBlock FALSE. Calling BeginUpdateBlock FALSE refreshes the image.
Examples
VB
With McView3D1
'start block operation
.BeginBlockUpdate True
'set 3 voxel sizes
.VoxelSizeX = 2
.VoxelSizeY = 2
.VoxelSizeZ = 200
'end block update
.BeginBlockUpdate False
End With
See Also