Hide Table of Contents
IGetFaces2 Method (IFeature)

Gets the faces in this feature.

.NET Syntax

Visual Basic (Declaration) 
Function IGetFaces2( _
   ByRef FaceCount As System.Integer _
) As Face2
Visual Basic (Usage) 
Dim instance As IFeature
Dim FaceCount As System.Integer
Dim value As Face2
 
value = instance.IGetFaces2(FaceCount)
C# 
Face2 IGetFaces2( 
   out System.int FaceCount
)
C++/CLI 
Face2^ IGetFaces2( 
&   [Out] System.int FaceCount
) 

Parameters

FaceCount

Number of faces in this feature

Return Value

  • in-process, unmanaged C++: Pointer to an array of pointers to the faces
  • VBA, VB.NET, C#, and C++/CLI: Not supported

See In-process Methods for details about this type of method.

Remarks

To determine the size of the array, call IFeature::GetFaceCount before calling this method.

IFeature::IGetFaces2 compares the number of faces in this feature with FaceCount. If the actual number of faces is larger than the specified FaceCount, then this method returns no faces and a status of S_ERROR. If the actual number of faces is smaller than the specified in FaceCount, then this method returns all of the faces in the return array, and changes FaceCount to reflect the correct number of faces.

In SOLIDWORKS, a face:

  • is the result of evaluating a feature.

  • can be owned by several features.

IFeature::IGetFaces2 returns all of the faces owned by a feature. This is different from the faces highlighted in the user interface when the feature is selected. The user interface filters out multiple feature faces. This filter is only for display purposes.

NOTES:

  • This method does not return any faces for draft features because draft features do not create any new faces. Drafting only modifies existing faces.
  • The number of faces for rolled hems is 0 because all of the faces belong to the children bends.

To filter out multiple feature faces using the SOLIDWORKS API, you must call IFace2::IGetFeature. Only the oldest feature from the face is returned, that is, the first owning feature in the FeatureManager design tree.

Example

HRESULT    hr = S_OK;

long       lNumFaces = 0;

 

hr = feat->GetFaceCount(&lNumFaces);

 

LPFACE2*   aFaces = new LPFACE2[lNumFaces];

 

hr = feat->IGetFaces2(&lNumFaces, aFaces);

 

...

 

delete [] aFaces;

aFaces = 0;

 

See Also

Availability

SOLIDWORKS 2001Plus FCS, Revision Number 10.0


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:   IGetFaces2 Method (IFeature)
*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) 2017 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.