Table of Contents

Enum ParameterKind

Namespace
RDCore.SDK.Model.Symbols.VBProject
Assembly
RDCore.SDK.dll

Describes the kind of parameter.

public enum ParameterKind

Fields

ExplicitByRef = 1

The parameter is explicitly declared as being passed by reference (ByRef).

If the member is a Property Let and Property Set declaration, semantics work ByVal regardless.

ExplicitByVal = 2

The parameter is explicitly declared as being passed by value (ByVal).

ImplicitByRef = 0

The parameter is implicitly declared as being passed by reference (implicit default).

ImplicitByVal = 3

The parameter is implicitly declared as being passed by value (ByVal).

This is only applicable for the value paraemter of Property Let and Property Set declarations.