VCCodeDelegate.RemoveParameter(Object) Method

Definition

Removes a parameter from the argument list.

public:
 void RemoveParameter(System::Object ^ Element);
public:
 void RemoveParameter(Platform::Object ^ Element);
void RemoveParameter(winrt::Windows::Foundation::IInspectable const & Element);
[System.Runtime.InteropServices.DispId(66)]
public void RemoveParameter (object Element);
[<System.Runtime.InteropServices.DispId(66)>]
abstract member RemoveParameter : obj -> unit
Public Sub RemoveParameter (Element As Object)

Parameters

Element
Object

Required. A CodeElement object or the name of one in the collection.

Attributes

Remarks

Element can either be a CodeElement object that is in the collection or the name of an element that is unique within the collection.

Individual elements do not have a RemoveParameter method because they can exist in multiple collections. To remove a specific element, you must call the Remove method of its container object.

Applies to