DataFormats::Format Constructor (String^, Int32)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the DataFormats::Format class with a Boolean that indicates whether a Win32 handle is expected.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
Format(
	String^ name,
	int id
)

Parameters

name
Type: System::String^

The name of this format.

id
Type: System::Int32

The ID number for this format.

The following code example creates a new format for a name and unique ID number. The new format does not require a Windows handle. It requires that textBox1 has been instantiated.

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 );
   }

.NET Framework
Available since 1.1
Return to top
Show: