Share via


DataFormats.Format(String, Int32) 建構函式

定義

使用表示是否必須是 Win32 控制代碼的布林值 (Boolean),初始化 DataFormats.Format 類別的新執行個體。

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)

參數

name
String

該格式的名稱。

id
Int32

該格式的 ID 編號。

範例

下列程式碼範例會為名稱和唯一識別碼建立新的格式。 新的格式不需要 Windows 控制碼。 它需要 textBox1 已具現化。

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

適用於