次の方法で共有


DictType.newmethod(Int32) Method

Definition

Initializes a new instance of the Object class.

protected:
 virtual void newmethod(int num1);
protected virtual void newmethod (int num1);
override this.newmethod : int -> unit
Protected Overridable Sub newmethod (num1 As Integer)

Parameters

num1
Int32

Remarks

This constructor does not fail if the typeId value is an invalid extended data type ID; however, when the DictType instance is used, a run-time error occurs. You can pass the name of the extended data type instead of an ID by using the extendedTypeNum function.

The following example shows how to create an instance of the DictType class.

DictType dicttype; 
dicttype = new DictType(extendedTypeNum(ABCModelType));

Applies to