RVTDocs.com
Namespace: Autodesk.Revit.DB Class: BRepBuilder

BRepBuilder.SetFaceMaterialId

Method
Description:
Sets material id to a face.
Syntax
public void SetFaceMaterialId(
	BRepBuilderGeometryId faceId,
	ElementId materialId
)
Parameters
Parameter Type Description
faceId BRepBuilderGeometryId Id of the face to which material id will be added. faceId was returned by a call to AddFace().
materialId ElementId The material id associated with the face, or invalidElementId if none. It is not verified that materialId corresponds to a valid Material element.
Return Value
Exceptions
Exception Condition
ArgumentException The supplied face id doesn't correspond to a face stored in this BRepBuilder object.
ArgumentNullException A non-optional argument was null
InvalidOperationException This BRepBuilder object isn't accepting new data, either because it has already been used to build geometry, or because of an error. Consult the State property of the BRepBuilder object for more details.