PointCollection.ToString Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
String Vytvoří reprezentaci tohoto PointCollectionsouboru .
Přetížení
ToString() |
String Vytvoří reprezentaci tohoto PointCollectionsouboru . |
ToString(IFormatProvider) |
String Vytvoří reprezentaci tohoto PointCollectionsouboru . |
ToString()
String Vytvoří reprezentaci tohoto PointCollectionsouboru .
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Návraty
String Vrátí hodnotu obsahující X hodnoty a Y struktur v tomto PointCollectionobjektu Point .
Příklady
Následující příklad kódu ukazuje, jak vytvořit řetězcovou reprezentaci .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"
Platí pro
ToString(IFormatProvider)
String Vytvoří reprezentaci tohoto PointCollectionsouboru .
public:
System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String
Parametry
- provider
- IFormatProvider
Informace o formátování specifické pro jazykovou verzi.
Návraty
String Vrátí hodnotu obsahující X hodnoty a Y struktur v tomto PointCollectionobjektu Point .
Příklady
Následující příklad kódu ukazuje, jak získat řetězcovou reprezentaci 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"