다음을 통해 공유


xArgs.parmEnumType Method

Definition

Overloads

parmEnumType()

Gets or sets the ID value of any enumeration type.

parmEnumType(Int32)

parmEnumType()

Gets or sets the ID value of any enumeration type.

public:
 virtual int parmEnumType();
public virtual int parmEnumType();
abstract member parmEnumType : unit -> int
override this.parmEnumType : unit -> int
Public Overridable Function parmEnumType () As Integer

Returns

The ID value of the enumeration type.

Remarks

This method is used with the parmEnum method to send a specific value of an enumeration type to the called object. For example: args.parmEnumType(enumnum(AssetBookType));args.parmEnum(AssetBookType::ValueModel);

Applies to

parmEnumType(Int32)

public:
 virtual int parmEnumType(int _value);
public virtual int parmEnumType(int _value);
abstract member parmEnumType : int -> int
override this.parmEnumType : int -> int
Public Overridable Function parmEnumType (_value As Integer) As Integer

Parameters

_value
Int32

The value to set; optional.

Returns

Applies to