DataFormats.Format(String, Int32) Konstruktor
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der DataFormats.Format-Klasse mit einem booleschen Wert, der angibt, ob ein Win32
-Handle erwartet wird.
public:
Format(System::String ^ name, int id);
public Format (string name, int id);
new System.Windows.Forms.DataFormats.Format : string * int -> System.Windows.Forms.DataFormats.Format
Public Sub New (name As String, id As Integer)
Parameter
- name
- String
Der Name dieses Formats.
- id
- Int32
Die ID-Nummer für dieses Format.
Beispiele
Im folgenden Codebeispiel wird ein neues Format für einen Namen und eine eindeutige ID-Nummer erstellt. Für das neue Format ist kein Windows-Handle erforderlich. Es erfordert, dass textBox1
instanziiert wurde.
private:
void CreateMyFormat2()
{
DataFormats::Format^ myFormat = gcnew DataFormats::Format(
"AnotherNewFormat", 20916 );
// Displays the contents of myFormat.
textBox1->Text = String::Format( "ID value: {0}\nFormat name: {1}",
myFormat->Id, myFormat->Name );
}
private void CreateMyFormat2() {
DataFormats.Format myFormat = new DataFormats.Format("AnotherNewFormat", 20916);
// Displays the contents of myFormat.
textBox1.Text = "ID value: " + myFormat.Id + '\n' +
"Format name: " + myFormat.Name;
}
Private Sub CreateMyFormat2()
Dim myFormat As New DataFormats.Format("AnotherNewFormat", 20916)
' Displays the contents of myFormat.
textBox1.Text = "ID value: " + myFormat.Id.ToString() + ControlChars.Cr _
+ "Format name: " + myFormat.Name
End Sub