DictField.name 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
name(DbBackend, Int32, FieldNameGenerationMode, String) | |
name(DbBackend, Int32) | |
name(DbBackend, Int32, FieldNameGenerationMode) | |
name() |
Returns the name of the field. |
name(DbBackend) |
name(DbBackend, Int32, FieldNameGenerationMode, String)
public:
virtual System::String ^ name(Microsoft::Dynamics::Ax::Xpp::DbBackend _db, int _arrayindex, Microsoft::Dynamics::Ax::Xpp::FieldNameGenerationMode _generationMode, System::String ^ _tableAlias);
public virtual string name (Microsoft.Dynamics.Ax.Xpp.DbBackend _db, int _arrayindex, Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode _generationMode, string _tableAlias);
abstract member name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int * Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode * string -> string
override this.name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int * Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode * string -> string
Public Overridable Function name (_db As DbBackend, _arrayindex As Integer, _generationMode As FieldNameGenerationMode, _tableAlias As String) As String
Parameters
- _db
- DbBackend
The alias for the table; optional.
- _arrayindex
- Int32
The alias for the table; optional.
- _generationMode
- FieldNameGenerationMode
The alias for the table; optional.
- _tableAlias
- String
The alias for the table; optional.
Returns
Applies to
name(DbBackend, Int32)
public:
virtual System::String ^ name(Microsoft::Dynamics::Ax::Xpp::DbBackend backend1, int num1);
public virtual string name (Microsoft.Dynamics.Ax.Xpp.DbBackend backend1, int num1);
abstract member name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int -> string
override this.name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int -> string
Public Overridable Function name (backend1 As DbBackend, num1 As Integer) As String
Parameters
- backend1
- DbBackend
- num1
- Int32
Returns
Applies to
name(DbBackend, Int32, FieldNameGenerationMode)
public:
virtual System::String ^ name(Microsoft::Dynamics::Ax::Xpp::DbBackend backend1, int num1, Microsoft::Dynamics::Ax::Xpp::FieldNameGenerationMode mode1);
public virtual string name (Microsoft.Dynamics.Ax.Xpp.DbBackend backend1, int num1, Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode mode1);
abstract member name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int * Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode -> string
override this.name : Microsoft.Dynamics.Ax.Xpp.DbBackend * int * Microsoft.Dynamics.Ax.Xpp.FieldNameGenerationMode -> string
Public Overridable Function name (backend1 As DbBackend, num1 As Integer, mode1 As FieldNameGenerationMode) As String
Parameters
- backend1
- DbBackend
- num1
- Int32
- mode1
- FieldNameGenerationMode
Returns
Applies to
name()
Returns the name of the field.
public:
virtual System::String ^ name();
public virtual string name ();
abstract member name : unit -> string
override this.name : unit -> string
Public Overridable Function name () As String
Returns
The name of the field.
Remarks
The following example shows the retrieval of the name of the field.
DictField df;
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum));
if (df)
{
print df.name();
}
Applies to
name(DbBackend)
public:
virtual System::String ^ name(Microsoft::Dynamics::Ax::Xpp::DbBackend backend1);
public virtual string name (Microsoft.Dynamics.Ax.Xpp.DbBackend backend1);
abstract member name : Microsoft.Dynamics.Ax.Xpp.DbBackend -> string
override this.name : Microsoft.Dynamics.Ax.Xpp.DbBackend -> string
Public Overridable Function name (backend1 As DbBackend) As String
Parameters
- backend1
- DbBackend