###User Defined Function###
_GDIPlus_CustomLineCapCreate

###Description###
Creates a CustomLineCap object

###Syntax###
#include <GDIPlus.au3>
	_GDIPlus_CustomLineCapCreate ( $hPathFill, $hPathStroke [, $iLineCap = 0 [, $inBaseInset = 0]] )


###Parameters###
@@ParamTable@@
$hPathFill
	Pointer to a Path object that defines the fill for the custom tip.
$hPathStroke
	Pointer to a Path object that defines the contour of the nozzle custom.
$iLineCap
	[optional] The line cap that will be used.
		$GDIP_LINECAPFLAT = Specifies a flat cap
		$GDIP_LINECAPSQUARE = Specifies a square cap
		$GDIP_LINECAPROUND = Specifies a circular cap
		$GDIP_LINECAPTRIANGLE = Specifies a triangular cap
		$GDIP_LINECAPNOANCHOR = Specifies that the line ends are not anchored
		$GDIP_LINECAPSQUAREANCHOR = Specifies that the line ends are anchored with a square
		$GDIP_LINECAPROUNDANCHOR = Specifies that the line ends are anchored with a circle
		$GDIP_LINECAPDIAMONDANCHOR = Specifies that the line ends are anchored with a diamond
		$GDIP_LINECAPARROWANCHOR = Specifies that the line ends are anchored with arrowheads
		$GDIP_LINECAPCUSTOM = Specifies that the line ends are made from a CustomLineCap
$inBaseInset
	[optional] Distance between the tip and the line. This distance is expressed in units.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	a handle to a new CustomLineCap object.
Failure:	0 and sets the @error flag to non-zero, @extended may contain GPSTATUS error code (GDIP_ERR*).
@@End@@


###Remarks###
After you are done with the object, call <a href="_GDIPlus_CustomLineCapDispose.htm">_GDIPlus_CustomLineCapDispose()</a> to release the object resources.


###Related###
_GDIPlus_CustomLineCapDispose


###See Also###
@@MsdnLink@@ GdipCreateCustomLineCap
