Autodesk Design Review
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
how to custom the Design Review ActionX ?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
538 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?????
Re: how to custom the Design Review ActionX ?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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++;
}

