Clipboard.ContainsFileDropList 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出剪貼簿上是否有 FileDrop 格式的資料,或是可以轉換為該格式的資料。
public:
static bool ContainsFileDropList();
public static bool ContainsFileDropList ();
static member ContainsFileDropList : unit -> bool
Public Shared Function ContainsFileDropList () As Boolean
傳回
如果剪貼簿上有檔案下拉清單,則為 true
,否則為 false
。
例外狀況
無法清除剪貼簿。 這通常在剪貼簿由另一個處理序使用時發生。
目前執行緒 (Thread) 不是在單一執行緒 Apartment (STA) 模式。 將 STAThreadAttribute 加入至應用程式的 Main
方法。
範例
下列範例示範此成員。
// Demonstrates SetFileDropList, ContainsFileDroList, and GetFileDropList
public System.Collections.Specialized.StringCollection
SwapClipboardFileDropList(
System.Collections.Specialized.StringCollection replacementList)
{
System.Collections.Specialized.StringCollection returnList = null;
if (Clipboard.ContainsFileDropList())
{
returnList = Clipboard.GetFileDropList();
Clipboard.SetFileDropList(replacementList);
}
return returnList;
}
' Demonstrates SetFileDropList, ContainsFileDroList, and GetFileDropList
Public Function SwapClipboardFileDropList(ByVal replacementList _
As System.Collections.Specialized.StringCollection) _
As System.Collections.Specialized.StringCollection
Dim returnList As System.Collections.Specialized.StringCollection _
= Nothing
If Clipboard.ContainsFileDropList() Then
returnList = Clipboard.GetFileDropList()
Clipboard.SetFileDropList(replacementList)
End If
Return returnList
End Function
備註
檔案卸載清單是包含檔案路徑資訊的字串集合。
使用這個方法來判斷剪貼簿是否包含檔案卸載清單,然後再使用 GetFileDropList 方法擷取它。
注意
類別 Clipboard 只能在設定為單一線程 Apartment (STA) 模式的執行緒中使用。 若要使用這個類別,請確定您的 Main
方法已標示 STAThreadAttribute 為 屬性。