OK, I verified with this code:
private void Application_BeginDoubleClick(object sender, BeginDoubleClickEventArgs e)
{
Document dwg = Application.DocumentManager.MdiActiveDocument;
Editor ed = dwg.Editor;
PromptSelectionResult res = ed.SelectImplied();
if (res.Status == PromptStatus.OK)
{
ed.WriteMessage("{0} entit{1} selected.", res.Value.Count, res.Value.Count > 1 ? "ies" : "y");
}
else
{
ed.WriteMessage("\nCannot select implied selection set.");
}
}
The Editor.SelectImplied() work with line, circle, arc, block WITHOUT attribute (e.g) PromptSelectionResult.Status returns OK). However, if we double-click a block that has attribute, the returned status is PromptStatus.Error. So, I am not sure if it is by design (probably not, because the built-in doubleclick action defined by the CUI works). It could be a bug as Alexander suggested. If so, it is serious blow to my double-click solution, because calling up custom dialog box on double-click would likely be used more often on editing block with attribute. I'll have to find workaround and updte my blog post.
I currently only have access to Acad2012, and hope this has already been fixed in Acad 2013, or upcoming Acad2014?