<< xls_SetWorksheetName xls_link xls_UnProtect >>

xls_link >> xls_link > xls_ShowGrid

xls_ShowGrid

Show/hide sheet grid.

Calling Sequence

xls_ShowGrid([flag])

Parameters

flag

grid flag, %t or 1 and %f or 0.

If not specified, used %t.

Description

Show/hide sheet grid.

Example

xls_NewExcel();
xls_AddWorkbook();
xls_SetVisible();
for i = 1 : 3
    xls_ShowGrid();
    sleep(300);
    xls_ShowGrid(%f);
    sleep(300);
end

xls_SetSave(%t);
xls_Close();
xls_Quit();

Report an issue
<< xls_SetWorksheetName xls_link xls_UnProtect >>