DataFormats.Format(String, Int32) Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe DataFormats.Format avec une valeur Boolean qui indique si un handle Win32
est attendu.
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)
Paramètres
- name
- String
Nom de ce format.
- id
- Int32
Numéro d'ID de ce format.
Exemples
L’exemple de code suivant crée un nouveau format pour un nom et un numéro d’IDENTIFICATION unique. Le nouveau format ne nécessite pas de handle Windows. Il nécessite que ait textBox1
été instancié.
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