Get state of graphpage cloneable .
BOOL IsCloneableEnabled( DWORD * pdwFlags = NULL )
return TRUE if graphpage is cloneable else return FALSE.
EX1
void IsCloneableEnabled_Ex1() { GraphPage gp = Project.ActivePageBase(); if(!gp) return; if(gp.IsCloneableEnabled()) out_str("graphpage is cloneable"); else out_str("graphpage is not cloneable"); }
origin.h