PdfLineShapeGetLine Method |
Get 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 GetLine(
out int startX,
out int startY,
out int endX,
out int endY
)
Public Sub GetLine (
<OutAttribute> ByRef startX As Integer,
<OutAttribute> ByRef startY As Integer,
<OutAttribute> ByRef endX As Integer,
<OutAttribute> ByRef 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