DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomLabel Class / Points Property






In This Topic
    Points Property
    In This Topic
    The points of a DicomLabel (of type PolyLine or Polygon)
    Syntax
    'Declaration
     
    
    Public Property Points As System.Drawing.PointF()
    'Usage
     
    
    Dim instance As DicomLabel
    Dim value() As System.Drawing.PointF
     
    instance.Points = value
     
    value = instance.Points
    public System.Drawing.PointF[] Points {get; set;}
    public read-write property Points: System.Drawing.array of PointF; 
    public function get,set Points : System.Drawing.PointF[]
    public: __property System.Drawing.PointF[]* get_Points();
    public: __property void set_Points( 
       System.Drawing.PointF[][]* value
    );
    public:
    property System.Drawing.array<PointF>^ Points {
       System.Drawing.array<PointF>^ get();
       void set (    System.Drawing.array<PointF>^ value);
    }
    Remarks

    This is a single-dimension array, but interpreted as pairs of values (x and y).

    The values may be updated either by direct assignment to this property, or as in earlier versions of DicomObjects, the AddPoint:o method may be used to add a point to the end of the array.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also