AddPoint(Single,Single) Method
In This Topic
Adds to point to the path used for a polyline or polygon type of
DicomLabel.
Syntax
'Declaration
Public Overloads Sub AddPoint( _
ByVal As System.Single, _
ByVal As System.Single _
)
'Usage
Dim instance As DicomLabel
Dim X As System.Single
Dim Y As System.Single
instance.AddPoint(X, Y)
public void AddPoint(
System.float ,
System.float
)
public procedure AddPoint(
: System.Single;
: System.Single
);
public function AddPoint(
: System.float,
: System.float
);
public: void AddPoint(
System.float ,
System.float
)
public:
void AddPoint(
System.float ,
System.float
)
Parameters
- X
- The X co-ordinates of the point to add.
- Y
- The Y co-ordinates of the point to add.
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also