DataObject Constructor ()
.NET Framework (current version)
Initializes a new instance of the DataObject class.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example creates a DataObject and adds data to it. The example then retrieves and displays the data. This code requires that textBox1 has been created.
private: void CreateDefaultDataObject() { // Creates a data object. DataObject^ myDataObject; // Assigns the string to the data object. String^ myString = "My text string"; myDataObject = gcnew DataObject( myString ); // Prints the string in a text box. textBox1->Text = myDataObject->GetData( DataFormats::Text )->ToString(); }
.NET Framework
Available since 1.1
Available since 1.1
Show: