void CSolidWorksGeom::ImportAnnotation()
{
if (!CheckIsSWConnected() || !m_pModelDoc)
return;
// get the first annotation
LPDISPATCH dAnnotation = NULL;
IMODELDOC swModelDoc(m_pModelDoc);
LPDISPATCH dDocExt = swModelDoc.GetExtension();
if (dDocExt)
{
IMODELDOCEXT swModelDocExt(dDocExt);
long lgCount = swModelDocExt.GetAnnotationCount();
m_vParameters = swModelDocExt.GetAnnotations();