subtract regions

subtract regions

Anonymous
Not applicable
499 Views
2 Replies
Message 1 of 3

subtract regions

Anonymous
Not applicable
hello
how I can subtract regions with vba?
i have several regions. my idea is:
first pick ab in a selectionset the region to subtract from.
then pick up all regions to subtract;
but how can i subtract the regions with using selectionset?

Tom
0 Likes
500 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
If your Object to Subtract from is oMainObj and your SS is oSS:

For Each oObj In oSS
oMainObj.Boolean acSubtraction, oObj
Next

HTH,
Jeff

wrote in message news:5434290@discussion.autodesk.com...
hello
how I can subtract regions with vba?
i have several regions. my idea is:
first pick ab in a selectionset the region to subtract from.
then pick up all regions to subtract;
but how can i subtract the regions with using selectionset?

Tom
0 Likes
Message 3 of 3

Anonymous
Not applicable
hello Jeff
thanks a lo for the quick help
Tom
0 Likes