LineShape.StartPoint プロパティ
LineShape のコントロールによって描画される線の始点座標を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(False)> _
Public Property StartPoint As Point
[BrowsableAttribute(false)]
public Point StartPoint { get; set; }
[BrowsableAttribute(false)]
public:
property Point StartPoint {
Point get ();
void set (Point value);
}
[<BrowsableAttribute(false)>]
member StartPoint : Point with get, set
function get StartPoint () : Point
function set StartPoint (value : Point)
プロパティ値
型 : System.Drawing.Point
線の始点座標を表す Point の構造体。
解説
座標は LineShape のコントロールのコンテナーとして、ピクセル単位で指定します。
または X1 と Y1 のプロパティを設定して開始の座標を変更できます。
例
次の例は、軸として EndPoint を使用すると、の傾斜方向と垂直方向に LineShape を水平方向、切り替えます。
Dim canvas As New Microsoft.VisualBasic.PowerPacks.ShapeContainer
Dim line1 As New Microsoft.VisualBasic.PowerPacks.LineShape(10, 10, 200, 10)
Private Sub RotateLine2_Load() Handles MyBase.Load
' Set the form as the parent of the ShapeContainer.
canvas.Parent = Me
' Set the ShapeContainer as the parent of the LineShape.
line1.Parent = canvas
End Sub
Private Sub RotateLine2_Click() Handles Me.Click
ChangeOrientation()
End Sub
Private Sub ChangeOrientation()
Static direction As String = "horizontal"
If direction = "horizontal" Then
' Change the orientation to diagonal.
line1.StartPoint = New System.Drawing.Point(line1.X1, 200)
direction = "diagonal"
ElseIf direction = "diagonal" Then
' Change the orientation to vertical.
line1.StartPoint = New System.Drawing.Point(line1.Y1, 200)
direction = "vertical"
Else
' Change the orientation to horizontal.
line1.StartPoint = New System.Drawing.Point(10, line1.Y2)
direction = "horizontal"
End If
End Sub
Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
Microsoft.VisualBasic.PowerPacks.LineShape line1 =
new Microsoft.VisualBasic.PowerPacks.LineShape(10, 10, 200, 10);
string direction;
private void RotateLine2_Load(System.Object sender, System.EventArgs e)
{
// Set the form as the parent of the ShapeContainer.
canvas.Parent = this;
// Set the ShapeContainer as the parent of the LineShape.
line1.Parent = canvas;
direction = "horizontal";
}
private void RotateLine2_Click(object sender, System.EventArgs e)
{
ChangeOrientation();
}
private void ChangeOrientation()
{
if (direction == "horizontal")
// Change the orientation to diagonal.
{
line1.StartPoint = new System.Drawing.Point(line1.X1, 200);
direction = "diagonal";
}
else if (direction == "diagonal")
{
line1.StartPoint = new System.Drawing.Point(line1.Y1, 200);
direction = "vertical";
}
else
{
// Change the orientation to horizontal.
line1.StartPoint = new System.Drawing.Point(10, line1.Y2);
direction = "horizontal";
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)