Class FormFieldCollection
Represents a collection of form fields.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public class FormFieldCollection : CollectionImpl
Properties
Item[Int32]
Gets the WFormField at the specified index. Read-only.
Declaration
public WFormField this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the form field to get. |
Property Value
Type | Description |
---|---|
WFormField | The WFormField at the specified index. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | The index is not valid in the FormFieldCollection. |
Item[String]
Gets the WFormField with specified name. Read-only.
Declaration
public WFormField this[string formFieldName] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | formFieldName | The string that specifies the form field name. |
Property Value
Type | Description |
---|---|
WFormField | The WFormField with the specified name. |
Methods
ContainsName(String)
Returns value indicating whether the specified collection contains item with specified name.
Declaration
public bool ContainsName(string itemName)
Parameters
Type | Name | Description |
---|---|---|
System.String | itemName | The string that specifies the name of the item to be found. |
Returns
Type | Description |
---|---|
System.Boolean | True if the collection has the specified form field, otherwise false. |