GetInternalData
Get internal data type
int GetInternalData( )
An FSI_* data type constant defined in oc_const.h
EX1
// Example sets storage of matrix to type BYTE // Matrix should be the active window void MatrixObject_GetInternalData_Ex1() { MatrixLayer mlay = Project.ActiveLayer(); if(!mlay) return; MatrixObject mobj = mlay.MatrixObjects(0); if(mobj.SetInternalData(FSI_BYTE,TRUE,FALSE)) printf("%d",mobj.GetInternalData()); }
Replaced by DataObject::GetInternalDataType. Get the internal data type of the matrix object.
Column::SetInternalData, DataObject::GetInternalDataType
origin.h