Share via


DictField.newmethod Method

Definition

Overloads

newmethod(Int32, Int32)

Initializes a new instance of the Object class.

newmethod(Int32, Int32, Int32)

newmethod(Int32, Int32)

Initializes a new instance of the Object class.

public:
 void newmethod(int num1, int num2);
public void newmethod (int num1, int num2);
override this.newmethod : int * int -> unit
Public Sub newmethod (num1 As Integer, num2 As Integer)

Parameters

num1
Int32
num2
Int32

Remarks

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

DictField df; 
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum)); 
// Check df for successful creation before proceeding. 
if (!df) 
{ 
// Take error action. 
}

Applies to

newmethod(Int32, Int32, Int32)

public:
 void newmethod(int _tableId, int _fieldId, int _arrayIndex);
public void newmethod (int _tableId, int _fieldId, int _arrayIndex);
override this.newmethod : int * int * int -> unit
Public Sub newmethod (_tableId As Integer, _fieldId As Integer, _arrayIndex As Integer)

Parameters

_tableId
Int32
_fieldId
Int32
_arrayIndex
Int32

Applies to