PointCollection.ToString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この String の PointCollection 表現を作成します。
オーバーロード
ToString() |
この String の PointCollection 表現を作成します。 |
ToString(IFormatProvider) |
この String の PointCollection 表現を作成します。 |
ToString()
この String の PointCollection 表現を作成します。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
戻り値
この String 内にある X 構造体の Y と Point の各値を含む PointCollection を返します。
例
次のコード例は、 の文字列表現 PointCollectionを作成する方法を示しています。
string pcString;
// Instantiating and initializing Point structures
Point point1 = new Point(10, 10);
Point point2 = new Point(20, 20);
Point point3 = new Point(30, 30);
// Instantiating a PointCollection
PointCollection pointCollection1 = new PointCollection();
// Adding Points to PointCollection
pointCollection1.Add(point1);
pointCollection1.Add(point2);
pointCollection1.Add(point3);
// pointCollection1 is equal to (10,10 20,20 30,30)
// Getting a string representation of the PointCollection
pcString = pointCollection1.ToString();
// pcString is equal to "10,10 20,20 30,30"
Dim pcString As String
' Instantiating and initializing Point structures
Dim point1 As New Point(10, 10)
Dim point2 As New Point(20, 20)
Dim point3 As New Point(30, 30)
' Instantiating a PointCollection
Dim pointCollection1 As New PointCollection()
' Adding Points to PointCollection
pointCollection1.Add(point1)
pointCollection1.Add(point2)
pointCollection1.Add(point3)
' pointCollection1 is equal to (10,10 20,20 30,30)
' Getting a string representation of the PointCollection
pcString = pointCollection1.ToString()
' pcString is equal to "10,10 20,20 30,30"
適用対象
ToString(IFormatProvider)
この String の PointCollection 表現を作成します。
public:
System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String
パラメーター
- provider
- IFormatProvider
カルチャ固有の書式設定情報。
戻り値
この String 内にある X 構造体の Y と Point の各値を含む PointCollection を返します。
例
次のコード例は、 の文字列表現を取得する方法を PointCollection示しています。
string pcString;
// Instantiating and initializing Point structures
Point point1 = new Point(10, 10);
Point point2 = new Point(20, 20);
Point point3 = new Point(30, 30);
// Instantiating a PointCollection
PointCollection pointCollection1 = new PointCollection();
// Adding Points to PointCollection
pointCollection1.Add(point1);
pointCollection1.Add(point2);
pointCollection1.Add(point3);
// pointCollection1 is equal to (10,10 20,20 30,30)
// Getting a string representation of the PointCollection
pcString = pointCollection1.ToString();
// pcString is equal to "10,10 20,20 30,30"
Dim pcString As String
' Instantiating and initializing Point structures
Dim point1 As New Point(10, 10)
Dim point2 As New Point(20, 20)
Dim point3 As New Point(30, 30)
' Instantiating a PointCollection
Dim pointCollection1 As New PointCollection()
' Adding Points to PointCollection
pointCollection1.Add(point1)
pointCollection1.Add(point2)
pointCollection1.Add(point3)
' pointCollection1 is equal to (10,10 20,20 30,30)
' Getting a string representation of the PointCollection
pcString = pointCollection1.ToString()
' pcString is equal to "10,10 20,20 30,30"
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET