GetPolyLineBoundaryLoopData Method (IHatchBoundaryLoop) Send Feedback
See Also  Example
HasBulge[out]
True if the PolyLine has bulge, false if not
IsClosed[out]
True if the PolyLine is closed, false if not
CoordinateDblArray[out]
Array of doubles of the PolyLine coordinates
BulgesDblArray[out]
Array of doubles of the bulge coordinates
Gets the PolyLine data for the Hatch boundary.

Syntax

Visual Basic 
Sub GetPolyLineBoundaryLoopData( _
   ByRef HasBulge As System.Boolean, _
   ByRef IsClosed As System.Boolean, _
   ByRef CoordinateDblArray As System.Object, _
   ByRef BulgesDblArray As System.Object _
) 
C# 
void GetPolyLineBoundaryLoopData( 
   out System.bool HasBulge,
   out System.bool IsClosed,
   out System.object CoordinateDblArray,
   out System.object BulgesDblArray
)
JavaScript 
GetPolyLineBoundaryLoopData(
) : {
   HasBulge : Boolean,
   IsClosed : Boolean,
   CoordinateDblArray : Array,
   BulgesDblArray : Array
}
COM native C++ 
HRESULT GetPolyLineBoundaryLoopData( 
   VARIANT_BOOL* HasBulge,
   VARIANT_BOOL* IsClosed,
   VARIANT* CoordinateDblArray,
   VARIANT* BulgesDblArray
) 
C++ 
DSRESULT GetPolyLineBoundaryLoopData( 
   bool* HasBulge,
   bool* IsClosed,
   dsDoubleArray* CoordinateDblArray,
   dsDoubleArray* BulgesDblArray
) 

Parameters

HasBulge[out]
True if the PolyLine has bulge, false if not
IsClosed[out]
True if the PolyLine is closed, false if not
CoordinateDblArray[out]
Array of doubles of the PolyLine coordinates
BulgesDblArray[out] or Return Value
Array of doubles of the bulge coordinates

Example

Remarks

This method is valid only when IHatchBoundaryLoop::IsPolyLine is true.
 

See Also