2.2.4.5.26 Column::GetParameters

Description

Gets the Parameters in a column label.

Syntax

BOOL GetParameters( vector<string> & vstr )

Parameters

vstr
[output] the string vector to receive Parameters.

Return

TRUE if OK, otherwise FALSE.

Examples

EX1

// Assume a worksheet is active that has at least one column
void Column_GetParameters_Ex1()
{
    Worksheet    wks;
    wks = Project.ActiveLayer();
    vector<string> vstr;
    wks.Columns(0).GetParameters(vstr);
    uint    iNum = vstr.GetSize();
    for(int ii = 0 ; ii < iNum ; ii++)
        printf("Parameter%u : %s\n", ii+1, vstr[ii]);
}

Remark

Gets the Parameters in a column label.

See Also

Column::GetExtendedLabel, Column::SetExtendedLabel

Header to Include

origin.h