Click or drag to resize

IMcOperations2Nand Method

Performs a logical NAND between 2 images or an image and a number.

Namespace:  MediaCy.IQL.Operations
Assembly:  MediaCy.IQL.Operations (in MediaCy.IQL.Operations.dll) Version: 10.0.6912.0
Syntax
VB
Function Nand ( 
	vOperand2 As Object,
	<OptionalAttribute> vOperand1 As Object
) As McImage

Parameters

vOperand2
Type: SystemObject
Second operand of the operation: McImage, or number (array for color images).
vOperand1 (Optional)
Type: SystemObject
Optional first image operand (operator applies to parent image when parameter is omitted).

Return Value

Type: McImage
The resulting McImage.

Implements

IMcOperationsNand(Object, Object)
Remarks
A conversion is performed on vOperand2 so that it has the same type as the source image. The conversion rules are defined by the value of the Conversion property. The result of the following: Not ( Parent image [or vOperand1] And vOperand2 ) is stored in the parent image or vOperand1 if there is no parent.
See Also