2.2.4.28.5 MatrixObject::GetColumnWidth

Description

Gets the width of a matrix column

Syntax

double GetColumnWidth( )

Parameters

Return

Width of the column.

Examples

EX1

// Get the cell width of the first matrix in a project
// Matrix must exist in the project
void MatrixObject_GetColumnWidth_Ex1()
{
    MatrixPage mp = Project.MatrixPages(0);
    if(!mp)
        return;
    MatrixObject moMy(mp.GetName(), 0);
    if( moMy )
        printf("the column witdh of %s is %f", mp.GetName(), moMy.GetColumnWidth());  
}

Remark

See Also

MatrixObject::SetColumnWidth

Header to Include

origin.h