LineSegment 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 LineSegment 类的新实例。
重载
LineSegment() |
初始化 LineSegment 类的新实例。 |
LineSegment(Point, Boolean) |
初始化 LineSegment 类的新实例,该类具有指定的终点 Point 和确定是否对 LineSegment 进行描边的布尔值。 |
LineSegment()
LineSegment(Point, Boolean)
初始化 LineSegment 类的新实例,该类具有指定的终点 Point 和确定是否对 LineSegment 进行描边的布尔值。
public:
LineSegment(System::Windows::Point point, bool isStroked);
public LineSegment (System.Windows.Point point, bool isStroked);
new System.Windows.Media.LineSegment : System.Windows.Point * bool -> System.Windows.Media.LineSegment
Public Sub New (point As Point, isStroked As Boolean)
参数
- point
- Point
此 LineSegment 的终结点。
- isStroked
- Boolean
要对 LineSegment 进行描边,则为 true
;否则为 false
。