IfcDoc.CtlProperties.DoInsert C# (CSharp) Method

DoInsert() public method

public DoInsert ( ToolMode toolmode ) : void
toolmode ToolMode
return void
        public void DoInsert(ToolMode toolmode)
        {
            switch (toolmode)
            {

                case ToolMode.Move:
                    this.ctlRules.DoInsert();
                    break;

                case ToolMode.Link:
                    //OPERATORS///this.ctlParameters.DoInsert();
                    break;
            }
        }
CtlProperties