Hide Table of Contents

Return Box Extents Example (C++ Dispatch)

This example shows how to return the box extents of assembly components.

NOTE: There is no checking to see if the components are suppressed.

 

void GetComponentExtents()

{

 LPDISPATCH  pDispatch;

 IModelDoc  ModelDoc;

 IConfiguration Configuration;

 IComponent  RootComponent;

 VARIANT   varChildren;

 SafeArray*  psaChildren;

 VARIANT   varBox;

 SafeArray*  psaBox;

 IComponent  Child;

 long   i, nChildren;

 double   extent[6];

 double   value;

 long   j;

 

 

 // Get the AssemblyDoc

 pDispatch = GetSOLIDWORKS()->GetActiveDoc();

 ModelDoc.AttachDispatch(pDispatch);

 if ( ModelDoc.GetType() == swDocASSEMBLY )

 {

 

  // Get the direct children of this assembly

  if ( (pDispatch = ModelDoc.GetActiveConfiguration()) != NULL )

  {

   Configuration.AttachDispatch(pDispatch);

 

   if ( (pDispatch = Configuration.GetRootComponent()) != NULL )

   {

    RootComponent.AttachDispatch(pDispatch);

 

    varChildren = RootComponent.GetChildren();

    psaChildren = V_ARRAY(&varChildren);

    SafeArrayGetUBound(psaChildren, 1, &nChildren);

    for ( i=0; i<=nChildren; i++ )   // Note Ubound 0 is 1 child

    {

     SafeArrayGetElement(psaChildren, &i, &pDispatch);

     Child.AttachDispatch(pDispatch);

   

     // Extract the extents from the components

     varBox = Child.GetBox(FALSE, FALSE);

     psaBox = V_ARRAY(&varBox);

     SafeArrayLock(psaBox);

     for ( j=0; j<6; j++ )

     {

      SafeArrayGetElement(psaBox, &j, (VOID *)(&(value)));

      extent[j] = value;

     }

 

     // Destroy the Box SafeArray

     SafeArrayUnlock(psaBox);

     SafeArrayDestroy(psaBox);

     Child.ReleaseDispatch();

    }

 

    // Destroy the children SafeArray

    SafeArrayDestroy(psaChildren);

   }

  }

 }

 

 return;

}

 

 



Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Return Box Extents Example (C++ Dispatch)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2018 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.