LineGeometry
LineGeometry
LineGeometry
LineGeometry
Class
Definition
Represents the geometry of a line.
public : sealed class LineGeometry : Geometry, ILineGeometrypublic sealed class LineGeometry : Geometry, ILineGeometryPublic NotInheritable Class LineGeometry Inherits Geometry Implements ILineGeometry// This API is not available in Javascript.
<LineGeometry .../>
- Inheritance
-
LineGeometryLineGeometryLineGeometryLineGeometry
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited properties
Inherited methods
Examples
This example shows how to create and render a LineGeometry object. A Geometry object only defines the geometry of the object—it does not render anything directly—so the example uses a Path shape to render the line. Because a line has no area, setting the Fill property of the Path would have no effect; instead, only the Stroke and StrokeThickness properties are specified.
<Canvas Width="200" Height="200">
<Path Stroke="Black" StrokeThickness="4" >
<Path.Data>
<LineGeometry StartPoint="10,20" EndPoint="100,130" />
</Path.Data>
</Path>
</Canvas>
Constructors
LineGeometry() LineGeometry() LineGeometry() LineGeometry()
Initializes a new instance of the LineGeometry class that has no length.
public : LineGeometry()public LineGeometry()Public Sub New()// This API is not available in Javascript.
Properties
EndPoint EndPoint EndPoint EndPoint
Gets or sets the end point of a line.
public : Point EndPoint { get; set; }public Point EndPoint { get; set; }Public ReadWrite Property EndPoint As Point// This API is not available in Javascript.
<LineGeometry EndPoint="x,y"/>
EndPointProperty EndPointProperty EndPointProperty EndPointProperty
Identifies the EndPoint dependency property.
public : static DependencyProperty EndPointProperty { get; }public static DependencyProperty EndPointProperty { get; }Public Static ReadOnly Property EndPointProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the EndPoint dependency property.
StartPoint StartPoint StartPoint StartPoint
Gets or sets the start point of the line.
public : Point StartPoint { get; set; }public Point StartPoint { get; set; }Public ReadWrite Property StartPoint As Point// This API is not available in Javascript.
<LineGeometry StartPoint="x,y"/>
StartPointProperty StartPointProperty StartPointProperty StartPointProperty
Identifies the StartPoint dependency property.
public : static DependencyProperty StartPointProperty { get; }public static DependencyProperty StartPointProperty { get; }Public Static ReadOnly Property StartPointProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the StartPoint dependency property.