C# Class Revit.SDK.Samples.CurtainWallGrid.CS.GridLine2D

the 2D format for the curtain grid line, it inherits from the Line2D class
Inheritance: Line2D
ファイルを表示 Open project: AMEE/revit Class Usage Examples

Public Methods

Method Description
GridLine2D ( ) : System

default constructor, initialize all the members with default value

GridLine2D ( GridLine2D gridLine2D ) : System

copy constructor, initialize the curtain grid line with another grid line 2D

GridLine2D ( Point startPoint, Point endPoint ) : System

constructor, initialize the grid line with end points

Method Details

GridLine2D() public method

default constructor, initialize all the members with default value
public GridLine2D ( ) : System
return System

GridLine2D() public method

copy constructor, initialize the curtain grid line with another grid line 2D
public GridLine2D ( GridLine2D gridLine2D ) : System
gridLine2D GridLine2D /// the source line ///
return System

GridLine2D() public method

constructor, initialize the grid line with end points
public GridLine2D ( Point startPoint, Point endPoint ) : System
startPoint Point /// the start point of the curtain grid line 2D ///
endPoint Point /// the end point of the curtain grid line 2D ///
return System