How to set ShadePlotCustomDpi

How to set ShadePlotCustomDpi

qdo5GQ49
Explorer Explorer
255 Views
1 Reply
Message 1 of 2

How to set ShadePlotCustomDpi

qdo5GQ49
Explorer
Explorer

I am trying to set the DPI plot quality, but I cannot figure out how to set the ShadePlotCustomDpi. Can anybody help with some sample codes?

 

// Specify the shaded viewport options
acPlSet.ShadePlot = PlotSettingsShadePlotType.Rendered;
acPlSet.ShadePlotResLevel = ShadePlotResLevel.Custom;
acPlSet.ShadePlotCustomDpi = ???

 

qdo5GQ49_1-1741359342040.png

Thank you...

 

0 Likes
256 Views
1 Reply
Reply (1)
Message 2 of 2

R.Gerritsen4967
Advocate
Advocate

Try this:

 

short a = 300;
acPlSet.ShadePlotCustomDpi = a;

 

0 Likes