LineReductionClippingPolylineBuilderPAppend Method |
Appends the line specified by p0 and p1 to the polyline. The given points are added only if
necessary; that is, if their corresponding pixel coordinates differ from the pixel coordinates
of the tail of the polyline. Setting either force_p0 or force_p1 to true forces the points to be
added without further checks.
Namespace:
Ptv.XServer.Controls.Map.Tools
Assembly:
Ptv.XServer.Controls.Map (in Ptv.XServer.Controls.Map.dll) Version: 1.7.10.0
Syntax public void Append(
Point p0,
bool force_p0,
Point p1,
bool force_p1
)
Public Sub Append (
p0 As Point,
force_p0 As Boolean,
p1 As Point,
force_p1 As Boolean
)
public:
void Append(
Point p0,
bool force_p0,
Point p1,
bool force_p1
)
member Append :
p0 : Point *
force_p0 : bool *
p1 : Point *
force_p1 : bool -> unit
Parameters
- p0
- Type: System.WindowsPoint
Start point. - force_p0
- Type: SystemBoolean
Specifies if p0 is to be added without further checks. - p1
- Type: System.WindowsPoint
End point. - force_p1
- Type: SystemBoolean
Specifies if p1 is to be added without further checks.
See Also