2.2.4.27.8 MatrixLayer::GetInternalData

Description

Replaced by GetInternalDataType. Kept for backwards compatibility.

Syntax

UINT GetInternalData( )

Parameters

Return

An FSI_* data type constant defined in oc_const.h

Examples

EX1

void MatrixLayer_GetInternalData_Ex1()
{
    MatrixPage mp = Project.MatrixPages(0);
    if(!mp)
        return;
    
    MatrixLayer ml(mp.GetName());
    ml.SetInternalData(FSI_BYTE);
    if ( ml.GetInternalData() == FSI_BYTE )
    	printf("Data type is byte.\n");
    else 
    	printf("Data type is not byte.\n");
}

Remark

See Also

MatrixLayer::GetInternalDataType

Header to Include

origin.h