AddDelegate Method [Variation 1] (General Extensibility)
Creates a new delegate code construct and inserts the code in the correct location.
Note AddDelegate may not be supported by all languages. This method is not supported for Visual Basic.
Public Function AddDelegate( _ Name As String, _ Type As Variant, _ Position As Variant, _ Optional Access As vsCMAccess = vsCMAccessDefault _ ) As CodeDelegate
Function AddDelegate( _ Name As String, _ Type As Variant, _ Position As Variant, _ Optional Access As vsCMAccess = vsCMAccessDefault _ ) As CodeDelegate
HRESULT __stdcall AddDelegate( BSTR Name, VARIANT Type, VARIANT Position, vsCMAccess Access, /* [out, retval] */ CodeDelegate** retVal );
CodeDelegate AddDelegate( string Name, object Type, object Position, vsCMAccess Access );
public function AddDelegate( Name : String, Type : Object, Position : Object, Access : vsCMAccess ) : CodeDelegate
Parameters
- Name
- Required. The name of the delegate to add.
- Type
- Required. A vsCMTypeRef constant indicating the data type that the function returns. This can be a CodeTypeRef object, a vsCMTypeRef constant, or a fully qualified type name.
- Position
- Optional. Default = 0. The code element after which to add the new element. If the value is a CodeElement, then the new element is added immediately after it.
If the value is Long, then AddDelegate indicates the element after which to add the new element.
Because collections begin their count at 1, passing 0 indicates that the new element should be placed at the beginning of the collection. A value of -1 means the element should be placed at the end.
- Access
- Optional. A vsCMAccess constant.
Return Value
Returns a CodeDelegate object.
Remarks
All languages support a period-separated format for the fully qualified type name, but some languages also support another particular format, such as a colon-separated (::) elements for Visual C++ .NET.
The correctness of the arguments is determined by the language behind the code model.
See Also
Applies To: CodeClass Object | CodeNameSpace Object | CodeStruct Object | FileCodeModel Object | VCCodeClass Object | VCCodeNamespace Object | VCCodeStruct Object | VCFileCodeModel Object