2.2.4.28.29 MatrixObject::HasImage

Description

Check if MatrixObject has image

Syntax

BOOL HasImage()

Parameters

Return

Returns TRUE if the matrix object has image, else FALSE.

Examples

EX1

void  MatrixObject_HasImage_Ex1()
{
	MatrixPage mp = Project.MatrixPages(0);
	if(!mp)
		return;

	MatrixObject mo(mp.GetName(), 0);
	if (mo.HasImage())
		printf("Matrix has Image\n");
	else
		printf("Matrix has NO Image\n");
}

Remark

See Also

MatrixLayer::HasImage

Header to Include

origin.h