IRectangleEntity
public interface IRectangleEntity : IPolygonEntity, IPolyCurveEntity, ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
using Autodesk.DesignScript.Runtime;
using System;
namespace Autodesk.DesignScript.Interfaces
{
[ExportToProtoGeometryClass]
[SupressImportIntoVM]
public interface IRectangleEntity : IPolygonEntity, IPolyCurveEntity, ICurveEntity, IGeometryEntity, IDesignScriptEntity, IDisposable, ITransformableEntity
{
double Width { get; }
double Height { get; }
}
}