Rect.ToString メソッド

定義

四角形の文字列形式を返します。

オーバーロード

ToString()

四角形の文字列形式を返します。

ToString(IFormatProvider)

指定した書式プロバイダーを使用して、四角形の文字列形式を返します。

ToString()

四角形の文字列形式を返します。

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

戻り値

現在の四角形の文字列形式。 文字列は、"X,Y,Width,Height" の形式になります。

次の例は、 メソッドを ToString() 使用して構造体の文字列表現を取得する方法を Rect 示しています。

private string toStringExample()
{
    // Initialize new rectangle.
    Rect myRectangle = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle.Size = new Size(200, 50);

    // Get a string representation of a Rect structure.
    // rectString is equal to "10,5,200,50"	.
    string rectString = myRectangle.ToString();

    return rectString;
}

適用対象

ToString(IFormatProvider)

指定した書式プロバイダーを使用して、四角形の文字列形式を返します。

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

カルチャ固有の書式設定情報。

戻り値

指定した書式プロバイダーにより決定される現在の四角形の文字列形式を返します。

適用対象