BuildingCoder.YBExporteContext._get2DRepresentation C# (CSharp) 메소드

_get2DRepresentation() 개인적인 메소드

private _get2DRepresentation ( Element element ) : GeometryElement
element Element
리턴 GeometryElement
        private GeometryElement _get2DRepresentation(
            Element element)
        {
            View view = this._get2DViewForElement( element );
              if( view == null )
            return null;

              Options options = new Options();
              options.View = view;
              return element.get_Geometry( options );
        }