2.2.4.5.5 Column::GetAdditionalInfo

Description

Get storage information from SPC.

Syntax

BOOL GetAdditionalInfo(string& strTextInfo)

Parameters

strTextInfo
[Output] String to receive information.

Return

return FALSE if nothing special about this column, and return TRUE if there are additional info about and we will format it as text in the following form:
[SubjectName]
contents

Examples

EX1

void	Column_GetAdditionalInfo_Ex1()
{   
        Worksheet wks = Project.ActiveLayer();
	Column col(wks, 0);
	string strTextInfo;
	col.GetAdditionalInfo(strTextInfo);
	out_str(strTextInfo);
}

Remark

See Also

Header to Include

origin.h