FormControl.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(String) | |
| name() | Gets or sets the name that is used in code to identify a form, report, table, query, or other Finance and Operations application object. | 
name(String)
public:
 virtual System::String ^ name(System::String ^ _value);public virtual string name(string _value);abstract member name : string -> string
override this.name : string -> stringPublic Overridable Function name (_value As String) As StringParameters
- _value
- String
The name to assign to the control; optional.
Returns
Applies to
name()
Gets or sets the name that is used in code to identify a form, report, table, query, or other Finance and Operations application object.
public:
 virtual System::String ^ name();public virtual string name();abstract member name : unit -> string
override this.name : unit -> stringPublic Overridable Function name () As StringReturns
The name that is used in code to identify an application object.
Remarks
The name property value of an object must meet the following criteria to avoid code conflicts:
- It must start with a letter.
- It cannot exceed 250 characters.
- It can include numbers and underscore (_) characters.
- It cannot include punctuation or spaces.
- Tables cannot have the same name as other public objects, such as extended data types, base enums, or classes.