| PathPointBuilder Constructor (Cartesian, JulianDate, Color, Single, Color) | 
 
            Initializes a 
PathPointBuilder with the given position, date, color, translucency,
            and outline color.
            
 
    Namespace: 
   AGI.Foundation.Graphics
    Assembly:
   AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic PathPointBuilder(
	Cartesian position,
	JulianDate date,
	Color color,
	float translucency,
	Color outlineColor
)
Public Sub New ( 
	position As Cartesian,
	date As JulianDate,
	color As Color,
	translucency As Single,
	outlineColor As Color
)
public:
PathPointBuilder(
	Cartesian position, 
	JulianDate date, 
	Color color, 
	float translucency, 
	Color outlineColor
)
new : 
        position : Cartesian * 
        date : JulianDate * 
        color : Color * 
        translucency : float32 * 
        outlineColor : Color -> PathPointBuilderParameters
- position
- Type: AGI.Foundation.CoordinatesCartesian
 The point's position.
- date
- Type: AGI.Foundation.TimeJulianDate
 The point's date.
- color
- Type: System.DrawingColor
 The point's color.
- translucency
- Type: SystemSingle
 The point's translucency.
- outlineColor
- Type: System.DrawingColor
 The point's outline color.
 Exceptions
Exceptions Remarks
Remarks
            The point's outline translucency is initialized to 0.
            
 See Also
See Also