DicomObjects.NET.V8
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 PointF()
    'Usage
     
    Dim instance As DicomLabel
    Dim value() As PointF
     
    instance.Points = value
     
    value = instance.Points
    public PointF[] Points {get; set;}
    public:
    property array<PointF>^ Points {
       array<PointF>^ get();
       void set (    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.0 or higher

    See Also