cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

Get and set display style in part mobe

akok
11-Garnet

Get and set display style in part mobe

Hi,

 

I can't find the proterty there I can get and set the display style on a part or assembly.

I will like to get the style before I set the style to "No hidden" and then save a tiff file of the part/assembly, and then is the style back.

 

Can anyone help?

Thank

Allan

 

4 REPLIES 4
akok
11-Garnet
(To:akok)

Hi,

 

I have been trying with:

DisplayStyle.FromInt(DisplayStyle._DISPSTYLE_NO_HIDDEN);

 

It doesn't give any errors, but it also does not seem to do anything.

 

Does any have a clue?

 

Allan

MarcusScheller
4-Participant
(To:akok)

Hi Allan,

did you found a solution to get the current display style?

Regards

Marcus

Hi Marcus,

 

The only way I found was by setting the config option, but it also works.

 

Allan

akok
11-Garnet
(To:akok)

Hi

 

I found a solution.

I got jlink to set the config option Display, like this:

    String DisplayStyle = MySession.GetConfigOption("Display"); // get the display style I had
    MySession.SetConfigOption("Display", "HIDDENINVIS"); // set No Hidden

 

do the tiff export like I want


    MySession.SetConfigOption("Display", DisplayStyle); // set the display style I had back

 

Allan

Top Tags