Revit 2025.3 API
DocumentGet |
Get the material painted on the element's face. Returns invalidElementId if the face is not painted.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public ElementId GetPaintedMaterial( ElementId elementId, Face face )
Public Function GetPaintedMaterial ( elementId As ElementId, face As Face ) As ElementId
public: ElementId^ GetPaintedMaterial( ElementId^ elementId, Face^ face )
member GetPaintedMaterial : elementId : ElementId * face : Face -> ElementId
Parameters
Return Value
ElementIdThe material's Id painted on the element's face.
| Exception | Condition |
|---|---|
| ArgumentException | The element elementId does not exist in the document -or- The face doesn't belong to the element |
| ArgumentNullException | A non-optional argument was null |
See Also