Error processing SSI file
LEADTOOLS (Leadtools assembly)

Show in webframe

RasterCurveClose Enumeration








Indicates how to close the curve.
Syntax
'Declaration
 
Public Enum RasterCurveClose 
   Inherits System.Enum
   Implements System.IComparable, System.IConvertible, System.IFormattable 
'Usage
 
Dim instance As RasterCurveClose
public enum RasterCurveClose
Leadtools.RasterCurveClose = function() { };
Leadtools.RasterCurveClose.prototype = {<br/>
  NoClose = 0,
	Close = 1,
	PartialClose = 2,
	
 };
public enum class RasterCurveClose : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable  
Members
ValueMemberDescription
0NoClose For n points, draw (n - 3) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P1P2 and P2P3
1Close For n points draw (n) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P0P1, P1P2, P2P3, P3P4, P4P0
2PartialClose For n points draw (n - 1) segments. For example, for points {P0, P1, P2, P3, P4}, draw segments P0P1, P1P2, P2P3, P3P4 (but not P4P0)
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterCurveClose

Requirements

Target Platforms

See Also

Reference

Leadtools Namespace

Error processing SSI file