xArgs.lookupField Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
lookupField() |
Gets or sets the field ID in a table to use to look up a specified record. |
lookupField(Int32) |
lookupField()
Gets or sets the field ID in a table to use to look up a specified record.
public:
virtual int lookupField();
public virtual int lookupField ();
abstract member lookupField : unit -> int
override this.lookupField : unit -> int
Public Overridable Function lookupField () As Integer
Returns
The field ID of a field in a table to use to look up a specified record.
Remarks
The returned value can be used by the called object to look up the specified record in the LookupRecord method or the string specified in the LookupValue method. For example, the field to look up could be set with the following: xArgs.lookupField(fieldnum(TableName, FieldName));
Applies to
lookupField(Int32)
public:
virtual int lookupField(int _value);
public virtual int lookupField (int _value);
abstract member lookupField : int -> int
override this.lookupField : int -> int
Public Overridable Function lookupField (_value As Integer) As Integer
Parameters
- _value
- Int32
The value to set; optional.