Click or drag to resize

IReadOnlyControlCollectionT Interface

Read only collection of controls.

Namespace: AxiomCore2.Controls
Assembly: Canary.Axiom.Session (in Canary.Axiom.Session.exe) Version: 25.6.0.25344+3070493948bf7d32a86bd3e9a8bcf4cc9a5b1929
Syntax
C#
public interface IReadOnlyControlCollection<T> : IEnumerable<T>, 
	IEnumerable
where T : IControlBase

Type Parameters

T
Generic control type that implements IControlBase.

The IReadOnlyControlCollectionT type exposes the following members.

Properties
 NameDescription
Public propertyCount Number of controls in the collection.
Public propertyItemInt32 Get a control from the collection by index.
Public propertyItemString Get a control from the collection by name.
Top
Methods
 NameDescription
Public methodContains Check if the collection contains a control.
Public methodContainsKey Check if the collection contains a control with name.
Public methodIndexOf(T) Get the index of a control in the collection by reference.
Public methodIndexOf(String) Get the index of a control in the collection by name.
Top
See Also