RemoveEmbedding
Remove embeddings at a given Worksheet cell
BOOL RemoveEmbedding( int nRow, int nCol, BOOL bColLabel = FALSE, BOOL bUndo = TRUE )
returns TRUE if successful
EX1
//Remove embeddings at a given Worksheet cell. void Worksheet_RemoveEmbedding_Ex1() { Worksheet wks = Project.ActiveLayer(); if(!wks) return; int nRow = 0; int nCol = 0; if(!wks.RemoveEmbedding(nRow, nCol)) printf("Failed to detach graph"); }
origin.h