IExportContextOnFaceBegin Method |
This method marks the beginning of a Face to be exported.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
SyntaxRenderNodeAction OnFaceBegin(
FaceNode node
)
Function OnFaceBegin (
node As FaceNode
) As RenderNodeAction
RenderNodeAction OnFaceBegin(
FaceNode^ node
)
abstract OnFaceBegin :
node : FaceNode -> RenderNodeAction
Parameters
- node FaceNode
-
An output node that represents a Face.
Return Value
RenderNodeAction
Return RenderNodeAction. Proceed if you wish to receive geometry (polymesh)
for this face, or return RenderNodeAction.Skip otherwise.
Remarks
Note that this method (as well as OnFaceEnd) is invoked only if the custom
exporter was set up to include geometric objects in the output stream.
See
IncludeGeometricObjects for mode details.
See Also