• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Design Review

    Reply
    Member
    Posts: 4
    Registered: ‎08-06-2012

    how to custom the Design Review ActionX ?

    540 Views, 1 Replies
    08-07-2012 07:20 AM

    I   can view the dwg on website with Design Review ActionX ?

    but  i  want to  custom  the  tool,for example  i  wan't detelte  the print tool.

    how  to  do?????

    Please use plain text.
    Member
    Posts: 5
    Registered: ‎10-22-2012

    Re: how to custom the Design Review ActionX ?

    10-23-2012 04:52 AM in reply to: yyjpz2007

    example (C#):

    AdCommon.IAdCollection Commands = (AdCommon.IAdCollection)_CompositeViewer.Commands;
    int Idx = 1;
    int count = Commands.Count;
    foreach (ECompositeViewer.IAdCommand Command in Commands)
    {

        if (Commands.get_ItemName(Idx) == "RIBBONBAR")
       {

    //this bar contains standard tools. 
           Command.Visible = true;
           Command.Toggled = true;
           Command.Enabled = true;
       }


     if (Commands.get_ItemName(Idx) =="PRINT")
      {

       //usually we don't need  this step except we want to hide this tool.
        Command.Enabled = true;
        Command.Visible = true;
      }
    Idx++;
    }

    Please use plain text.