Class ObjectInfo
Holds the information about the registered object.
Inherited Members
Namespace: FastReport.Utils
Assembly: FastReport.Base.dll
Syntax
public class ObjectInfo : BaseObjectInfo<ObjectInfo>
Properties
Enabled
Gets or sets the enabled flag for the object.
Declaration
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Function
The registered function.
Declaration
[Obsolete("Use RegisteredObjects.Functions", true)]
public MethodInfo Function { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.MethodInfo |
Name
Name of object or category.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Object
The registered object.
Declaration
public Type Object { get; set; }
Property Value
Type | Description |
---|---|
System.Type |
Text
Tooltip text.
Declaration
public override string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
FastReport.Utils.BaseObjectInfo<FastReport.Utils.ObjectInfo>.Text
Methods
EnumItems(ICollection<ObjectInfo>)
Enumerates all objects.
Declaration
public override void EnumItems(ICollection<ObjectInfo> list)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.ICollection<ObjectInfo> | list | List that will contain enumerated items. |
Overrides
FastReport.Utils.BaseObjectInfo<FastReport.Utils.ObjectInfo>.EnumItems(System.Collections.Generic.ICollection<FastReport.Utils.ObjectInfo>)