Show / Hide Table of Contents

Class FormControlCollection

Represents a collection of form controls on a sheet.

Inheritance
System.Object
FormControlCollection
WorksheetFormControlCollection
Namespace: DRIT.Spreadsheet.Forms
Assembly: DRIT.Spreadsheet.dll
Syntax
public class FormControlCollection : IReadOnlyList<FormControl>
Remarks

Form controls does not have unique names. It is allowed to have multiple controls with the same name.

Properties

Count

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Item[Int32]

Declaration
public FormControl this[int index] { get; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
FormControl

Methods

Get<TC>(String)

Declaration
public TC Get<TC>(string name)
    where TC : FormControl
Parameters
Type Name Description
System.String name
Returns
Type Description
TC
Type Parameters
Name Description
TC

GetEnumerator()

Declaration
public IEnumerator<FormControl> GetEnumerator()
Returns
Type Description
IEnumerator<FormControl>
Back to top Generated by DocFX