PropertyMap.Remove(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從對應中刪除指定的屬性。
public:
void Remove(System::String ^ propertyName);
public void Remove (string propertyName);
member this.Remove : string -> unit
Public Sub Remove (propertyName As String)
參數
- propertyName
- String
要移除之屬性的名稱。
例外狀況
propertyName
為 null
。
範例
下列程式碼範例示範如何移除 屬性與 ElementHost 控制項的 Cursor 對應。
// The RemoveCursorMapping method deletes the default
// mapping for the Cursor property.
private void RemoveCursorMapping()
{
elemHost.PropertyMap.Remove("Cursor");
}
' The RemoveCursorMapping method deletes the default
' mapping for the Cursor property.
Private Sub RemoveCursorMapping()
elemHost.PropertyMap.Remove("Cursor")
End Sub
下列程式碼範例示範如何將 屬性的 Cursor 對應新增至 WindowsFormsHost 控制項。
// The RemoveCursorMapping method deletes the default
// mapping for the Cursor property.
private void RemoveCursorMapping()
{
wfHost.PropertyMap.Remove("Cursor");
}
' The RemoveCursorMapping method deletes the default
' mapping for the Cursor property.
Private Sub RemoveCursorMapping()
wfHost.PropertyMap.Remove("Cursor")
End Sub