Class ObjectInfo
Holds the information about the registered object.
Inheritance
System.Object
ObjectInfo
Namespace: FastReport.Olap.Utils
Assembly: FastReport.Olap.dll
Syntax
public class ObjectInfo
Properties
ButtonIndex
Button index.
Declaration
public int ButtonIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
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 |
Image
Image.
Declaration
public Bitmap Image { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Bitmap |
ImageIndex
Image index.
Declaration
public int ImageIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
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. |