GetLinkTable
Find the table object in a graph layer that is linked to this worksheet
BOOL GetLinkTable( Grid & grid, GraphObject & grTable = NULL )
true if found, false if no linked table found
EX1
//Find if the table object in a graph layer that is linked to this worksheet void Datasheet_GetLinkTable_Ex1() { Worksheet wks = Project.ActiveLayer(); if(wks) { Grid grid; BOOL bRet = wks.GetLinkTable(grid); if(bRet) printf("the Grid object inside the table existed"); } }
origin.h