 | PdfiumFPDFPath_AppendLine Method |
Adds a rectangle to the path.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPath_AppendLine(
IntPtr path,
float x1,
float y1,
float x2,
float y2
)
Public Shared Sub FPDFPath_AppendLine (
path As IntPtr,
x1 As Single,
y1 As Single,
x2 As Single,
y2 As Single
)
public:
static void FPDFPath_AppendLine(
IntPtr path,
float x1,
float y1,
float x2,
float y2
)
static member FPDFPath_AppendLine :
path : IntPtr *
x1 : float32 *
y1 : float32 *
x2 : float32 *
y2 : float32 -> unit
public static void FPDFPath_AppendLine(
IntPtr path,
float x1,
float y1,
float x2,
float y2
)
Patagames.Pdf.Pdfium.FPDFPath_AppendLine = function(path, x1, y1, x2, y2);
Parameters
- path IntPtr
- Handle to the destination path returned by FPDFPath_Create or FPDFPathObj_GetPath(IntPtr).
- x1 Single
- The x-coordinate of the start of a new line.
- y1 Single
- The y-coordinate of the start of a new line.
- x2 Single
- The x-coordinate of the end of a line.
- y2 Single
- The y-coordinate of the end of a line.
Remarks
See Also