2.2.4.27.7 MatrixLayer::GetCellWidth

Description

Get the matrix cell width

Syntax

double GetCellWidth( )

Parameters

Return

The matrix cell width

Examples

EX1

//Get the matrix cell width 
void MatrixLayer_GetCellWidth_Ex1()
{
    MatrixPage mp = Project.MatrixPages(0);
    if(!mp)
        return;
    
    MatrixLayer ml(mp.GetName());
    if( ml )
        printf("The matrix cell width is %f\n", ml.GetCellWidth());
}

Remark

Get the matrix cell width

See Also

MatrixLayer::SetCellWidth

Header to Include

origin.h