2.1.14.4.16 wks_get_book_sheet_name


Description

construct the [Book1]Sheet1 string from given Datasheet

Syntax

string wks_get_book_sheet_name( const Datasheet & ds )

Parameters

ds
[input] datasheet to retrive string

Return

string in the [Book]Sheet form

Examples

EX1

void wks_get_book_sheet_name_ex1()
{
    Worksheet wks;
    wks.Create();
    int nDesiredColumnPosition =0;
    string strWksName = wks_get_book_sheet_name(wks);
    printf("%s", strWksName);
}

Remark

See Also

Header to Include

origin.h

Reference