DicomObjects.NetStandard 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 SkiaSharp.SKPoint()
    'Usage
     
    
    Dim instance As DicomLabel
    Dim value() As SkiaSharp.SKPoint
     
    instance.Points = value
     
    value = instance.Points
    public SkiaSharp.SKPoint[] Points {get; set;}
    public:
    property SkiaSharp.array<SKPoint>^ Points {
       SkiaSharp.array<SKPoint>^ get();
       void set (    SkiaSharp.array<SKPoint>^ 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also