Autodesk.AutoCAD.Customization Namespace > DoubleClickAction Class > DoubleClickAction Constructor > DoubleClickAction(MenuGroup, string, string, string, MenuMacro) Constructor
DoubleClickAction.DoubleClickAction(MenuGroup, string, string, string, MenuMacro) Constructor
Description

 

Constructs a DoubleClickAction, specifying its name, description, dxfname, and menu macro.

Visual Basic
Public Sub New(
    parent As MenuGroup, 
    name As string, 
    description As string, 
    dxfname As string, 
    menuMacro As MenuMacro
)
C#
public DoubleClickAction(
    MenuGroup parent, 
    string name, 
    string description, 
    string dxfname, 
    MenuMacro menuMacro
);
Parameters
Parameters 
Description 
MenuGroup parent 
Input the MenuGroup that this double click action belongs to. 
string name 
Input the name of the double click action. 
string description 
Input the description of the double click action. 
string dxfname 
Input the dxfname of the object associated with the double click action. 
MenuMacro menuMacro 
Input the MenuMacro command associated with the double click action. 
Links
   Comments?