VCCodeFunction.RemoveParameter(Object) 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.
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(49)]
public void RemoveParameter (object Element);
[<System.Runtime.InteropServices.DispId(49)>]
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.