PdfLineShapeSetLine Method |
Set this
PdfLineShape's coordinates. Line is drawn from (
startX,
startY) to (
endX,
endY).
Namespace:
RadPdf.Data.Document.Objects.Shapes
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public void SetLine(
int startX,
int startY,
int endX,
int endY
)
Public Sub SetLine (
startX As Integer,
startY As Integer,
endX As Integer,
endY As Integer
)
Parameters
- startX
- Type: SystemInt32
X coordinate for start of line - startY
- Type: SystemInt32
Y coordinate for start of line - endX
- Type: SystemInt32
X coordinate for end of line - endY
- Type: SystemInt32
Y coordinate for end of line
Remarks If this line has an arrow head, it is placed at the start of the line with this point at (startX, startY)
See Also