Design Review
Welcome to Autodesk’s Design Review Forums. Share your knowledge, ask questions, and explore popular Design Review topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Design Review Properties Band API

4 REPLIES 4
Reply
Message 1 of 5
p.listo
449 Views, 4 Replies

Design Review Properties Band API

Is there any way of disabling the Object Properties band and Model band that appear when an object is clicked?

I'm attempted to achieve this programmatically in a HTML / Javascript scenario, either via a HTML <param> or through the API via Javascript.

 

Thanks,

 

Paul

4 REPLIES 4
Message 2 of 5
herbert.he
in reply to: p.listo

Thank you for your question.

You can use the code below to suppress all Palettes.
    ADViewer.AutoOpenPalettesDisabled = 1;

 

You can also to suppress a specified individual palette following the enum below:

    Suppress_None = 0, // default 

    Suppress_All = 1,

    Suppress_Markups = 2,

    Suppress_Markup_Properties = 4,

    Suppress_Object_Properties = 8,

    Suppress_Sheet_Properties = 16,

    Suppress_CrossSections = 32,

    Suppress_TextPane = 64,

    Suppress_Views = 128,

    Suppress_Model = 256,

    Suppress_GridData = 512,

    Suppress_GridData_Object = 1024,

    Suppress_Default = 0


Please let me know if I can be of any further assistance.
 



Herbert He
SW Engineer
PSEB-GE- ACRD PSEB
Autodesk, Inc.
Message 3 of 5
p.listo
in reply to: herbert.he

Thanks for your reply, it solved my problem for IE 8 and below.

 

This method does not seem to work across Internet Explorer 9.

Is there any workaround for this?

 

Kind Regards,

 

Paul

Message 4 of 5
herbert.he
in reply to: p.listo

Thank you for your feedback.

 

It works well with IE 9 on my machine. I'd suggest you to retest it on another machine with IE 9. If it still doesn't work please attach your sample code for us to investigate.

 

 



Herbert He
SW Engineer
PSEB-GE- ACRD PSEB
Autodesk, Inc.
Message 5 of 5
p.listo
in reply to: herbert.he

My apologies, turns out it was a problem with our web server.

 

Thanks for your assistance,

 

Paul Listo

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report