I was reading a macro file from the solidworks site and fined this function (mark in photo) and search in api help
Is it possible to know the usefulness of this line and How do we benefit of (SetUserPreferenceToggle Method )
I was reading a macro file from the solidworks site and fined this function (mark in photo) and search in api help
Is it possible to know the usefulness of this line and How do we benefit of (SetUserPreferenceToggle Method )
This option controls the 'Input dimension value' option in System Options:
In general all of the SetUserPreferenceXValue are controlling the System options and Document Properties. You can see the map here: 2013 SOLIDWORKS API Help - System Options and Document Properties
You need to set this particular option (i.e. swInputDimValOnCreate) to false if your macro updating the dimensions to avoid the popup which will block the operation cause macro will wait for user input for each changed dimension.
Thanks,
Artem
This option controls the 'Input dimension value' option in System Options:
In general all of the SetUserPreferenceXValue are controlling the System options and Document Properties. You can see the map here: 2013 SOLIDWORKS API Help - System Options and Document Properties
You need to set this particular option (i.e. swInputDimValOnCreate) to false if your macro updating the dimensions to avoid the popup which will block the operation cause macro will wait for user input for each changed dimension.
Thanks,
Artem