numFields

The numFields property returns the total number of fields in the document.

 

Syntax

System.Int32 numFields();

 

Return Value

Returns the current property value.

 

Remarks

This property is Read-Only

 

Member of doc.

 

Example

for (var i = 0; i < this.numFields; i++)
      app.alert("Field[" + i + "]: " + this.getNthFieldName(i));