Class BaseObjectInfo<T>
Namespace: FastReport.Utils
Assembly: FastReport.Base.dll
Syntax
public abstract class BaseObjectInfo<T>
where T : BaseObjectInfo<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
BaseObjectInfo()
Declaration
protected BaseObjectInfo()
Properties
Items
List of subitems.
Declaration
public List<T> Items { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> |
Text
Tooltip text.
Declaration
public abstract string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
EnumItems(ICollection<T>)
Enumerates all objects.
Declaration
public abstract void EnumItems(ICollection<T> list)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.ICollection<T> | list | List that will contain enumerated items. |