Show / Hide Table of Contents

Class ObjectInfo

Holds the information about the registered object.

Inheritance
System.Object
ObjectInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FastReport.Utils
Assembly: FastReport.OpenSource.dll
Syntax
public class ObjectInfo

Properties

Enabled

Gets or sets the enabled flag for the object.

Declaration
public bool Enabled { get; set; }
Property Value
Type Description
System.Boolean

Flags

Flags that will be used to create an object instance in the designer.

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

Function

The registered function.

Declaration
public MethodInfo Function { get; set; }
Property Value
Type Description
System.Reflection.MethodInfo

Items

List of subitems.

Declaration
public List<ObjectInfo> Items { get; }
Property Value
Type Description
System.Collections.Generic.List<ObjectInfo>

MultiInsert

Indicates whether this object can be inserted several times simultaneously.

Declaration
public bool MultiInsert { get; set; }
Property Value
Type Description
System.Boolean
Remarks

This is applied to Line object only.

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 string Text { get; set; }
Property Value
Type Description
System.String

Methods

EnumItems(List<ObjectInfo>)

Enumerates all objects.

Declaration
public void EnumItems(List<ObjectInfo> list)
Parameters
Type Name Description
System.Collections.Generic.List<ObjectInfo> list

List that will contain enumerated items.

Back to top Generated by DocFX