Click or drag to resize

IMcViewNDBeginBlockUpdate Method

Enables/Disables ND viewer update during block operations.

Namespace:  MediaCy.IQL.Display.ViewerND
Assembly:  MediaCy.IQL.Display.ViewerND (in MediaCy.IQL.Display.ViewerND.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 McViewND1
'start block operation
.BeginBlockUpdate True
'set 3 voxel sizes
.VoxelSizeX = 2
.VoxelSizeY = 2
.VoxelSizeZ = 200
'end block update
.BeginBlockUpdate False
End With
See Also