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

Transform.CreateReflection

Method
Description:
Creates a transform that represents a reflection across the given plane.
Syntax
public static Transform CreateReflection(
	Plane plane
)
Examples
private Transform Reflect(ReferencePlane refPlane)
{
    Transform mirTrans = Transform.CreateReflection(refPlane.GetPlane());

    return mirTrans;
}
Parameters
Parameter Type Description
plane Plane The plane.
Return Value
Type Description
Transform The new transform.
Exceptions
Exception Condition
ArgumentNullException A non-optional argument was NULL