RVTDocs.com
Namespace: Autodesk.Revit.DB

RuledFace

Class
Description:
A ruled face of a 3d solid or open shell.
Remarks:
A ruled surface is created by sweeping a line between two profile curves or between a curve and a point (a point and a curve). For details on the parameterization, refer to the documentation for RuledSurface.
Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.APIObject
    Autodesk.Revit.DB.GeometryObject
      Autodesk.Revit.DB.Face
        Autodesk.Revit.DB.RuledFace
Syntax
public class RuledFace : Face
Examples
private void GetRuledFaceInfo(Face face)
{
    RuledFace ruledFace = face as RuledFace;
    if (null != ruledFace)
    {
        Curve curve = ruledFace.get_Curve(0);
        XYZ point = ruledFace.get_Point(0);
    }
}