Table of Contents

Class DataModelObject

Namespace
LlamaLogic.Packages.Models.Data
Assembly
LlamaLogic.Packages.dll

Represents an OBJECT reference in a SimData or CombinedTuning resource (🔓)

public class DataModelObject : DataModelReference
Inheritance
DataModelObject
Derived
Inherited Members

Constructors

DataModelObject(DataModelTable, Index, Index, DataModelType)

Initializes a new DataModelObject (🔄️🏃)

public DataModelObject(DataModelTable table, Index rowIndex, Index columnIndex, DataModelType type)

Parameters

table DataModelTable

The table containing the object being referenced

rowIndex Index

The row index within the containing table of the object being referenced

columnIndex Index

The column index within the containing table of the object being referenced

type DataModelType

The type of the object being referenced

Properties

NullReference

Gets the null reference DataModelObject

public static DataModelObject NullReference { get; }

Property Value

DataModelObject

Value

Gets/sets the value referenced by the object (💤)

public object? Value { get; set; }

Property Value

object