DataObject.GetFormats メソッド ()
このインスタンスに格納されたデータに関連付けられているすべての形式、または変換できるすべての形式のリストを返します。
Overloads Public Overridable Function GetFormats() As String() Implements _ IDataObject.GetFormats
[C#]
public virtual string[] GetFormats();
[C++]
public: virtual String* GetFormats() __gc[];
[JScript]
public function GetFormats() : String[];
戻り値
String 型の配列。このオブジェクトに格納されているデータがサポートするすべての形式のリストが含まれます。
実装
解説
サポートされているデータ形式を取得するには、 GetData を呼び出す前に、このメソッドを呼び出します。定義済みの形式については、 DataFormats のトピックを参照してください。
メモ 形式変換を有効にしてデータが格納されている場合、要求した形式が、格納されている形式と互換性があれば、そのデータを別の形式に変換できます。たとえば、Unicode として格納されたデータをテキストに変換できます。
使用例
[Visual Basic, C#, C++] データに関連付けられている形式、およびデータを変換することができる形式を DataObject に問い合わせる例を次に示します。結果のリストはテキスト ボックスに表示されます。このコードは、 textBox1
が作成されていることを前提にしています。
Private Sub GetAllFormats()
' Creates a new data object using a string and the text format.
Dim myDataObject As New DataObject(DataFormats.Text, "Another string")
' Gets all the data formats and data conversion formats in the DataObject.
Dim arrayOfFormats As String() = myDataObject.GetFormats()
' Prints the results.
textBox1.Text = "The format(s) associated with the data are: " & ControlChars.Cr
Dim i As Integer
For i = 0 To arrayOfFormats.Length - 1
textBox1.Text += arrayOfFormats(i) & ControlChars.Cr
Next i
End Sub 'GetAllFormats
[C#]
private void GetAllFormats() {
// Creates a new data object using a string and the text format.
DataObject myDataObject = new DataObject(DataFormats.Text, "Another string");
// Gets all the data formats and data conversion formats in the DataObject.
String[] arrayOfFormats = myDataObject.GetFormats();
// Prints the results.
textBox1.Text = "The format(s) associated with the data are: " + '\n';
for(int i=0; i<arrayOfFormats.Length; i++)
textBox1.Text += arrayOfFormats[i] + '\n';
}
[C++]
private:
void GetAllFormats() {
// Creates a new data object using a string and the text format.
DataObject* myDataObject = new DataObject(DataFormats::Text, S"Another string");
// Gets all the data formats and data conversion formats in the DataObject.
String* arrayOfFormats[] = myDataObject->GetFormats();
// Prints the results.
textBox1->Text = S"The format(s) associated with the data are: \n";
for(int i=0; i<arrayOfFormats->Length; i++)
textBox1->Text = String::Concat( textBox1->Text, arrayOfFormats[i], S"\n" );
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataObject クラス | DataObject メンバ | System.Windows.Forms 名前空間 | DataObject.GetFormats オーバーロードの一覧 | GetData | SetData | DataFormats | GetDataPresent