IVsaScriptScope.RemoveItem Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When implemented in a class, removes an item from the scope.
Overloads
RemoveItem(IJSVsaItem) |
This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, removes the specified IJSVsaItem object from the scope. |
RemoveItem(IVsaItem) |
This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, removes the specified IVsaItem object from the scope. |
RemoveItem(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, removes the item that is designated by the specified name from the scope. |
RemoveItem(IJSVsaItem)
When implemented in a class, removes the specified IJSVsaItem object from the scope.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void RemoveItem(Microsoft::JScript::Vsa::IJSVsaItem ^ item);
public void RemoveItem (Microsoft.JScript.Vsa.IJSVsaItem item);
abstract member RemoveItem : Microsoft.JScript.Vsa.IJSVsaItem -> unit
Public Sub RemoveItem (item As IJSVsaItem)
Parameters
- item
- IJSVsaItem
The item to remove.
See also
Applies to
RemoveItem(IVsaItem)
When implemented in a class, removes the specified IVsaItem object from the scope.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void RemoveItem(Microsoft::Vsa::IVsaItem ^ item);
public void RemoveItem (Microsoft.Vsa.IVsaItem item);
abstract member RemoveItem : Microsoft.Vsa.IVsaItem -> unit
Public Sub RemoveItem (item As IVsaItem)
Parameters
- item
- IVsaItem
The item to remove.
See also
Applies to
RemoveItem(String)
When implemented in a class, removes the item that is designated by the specified name from the scope.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void RemoveItem(System::String ^ itemName);
public void RemoveItem (string itemName);
abstract member RemoveItem : string -> unit
Public Sub RemoveItem (itemName As String)
Parameters
- itemName
- String
The name of the item to remove.