FormSuite for Invoices v2.1 - Updated
Name Property (FormFieldDefinition)




Accusoft.FSInvoices Namespace > FormFieldDefinition Class : Name Property
Gets and sets the unique user-defined name for this field.

This is descriptive name of a field on a form. For example, if the data to be collected is the due date, then a good field name would be "Due Date". This name will be returned in the FormField in the results.

Syntax
'Declaration
 
<DataMemberAttribute()>
Public Property Name As String
'Usage
 
Dim instance As FormFieldDefinition
Dim value As String
 
instance.Name = value
 
value = instance.Name
[DataMember()]
public string Name {get; set;}
[DataMember()]
public: __property string* get_Name();
public: __property void set_Name( 
   string* value
);
[DataMember()]
public:
property String^ Name {
   String^ get();
   void set (    String^ value);
}
Remarks

Default: "Unknown".

Please Note that for any FormFieldDefinition associated with a table column's header, the Name attribute must start with the characters "LIT". Also, there must be a corresponding FormTableColumnHeaderDefinition instance with the same "Name" attribute.

See Also

Reference

FormFieldDefinition Class
FormFieldDefinition Members