Table of Contents

Struct VariableValue

Namespace
combit.Reporting.ProjectConverter
Assembly
combit.ListLabel31.ProjectConverter.dll

Holds a single conversion variable value together with an optional explicit field type. When FieldType has a value, Value is a string.

public readonly struct VariableValue
Inherited Members

Constructors

VariableValue(object, LlFieldType?)

Initializes a new instance of the VariableValue struct.

public VariableValue(object value, LlFieldType? fieldType)

Parameters

value object

The variable value.

fieldType LlFieldType?

The explicit field type, or null to infer it from the value's .NET type.

Properties

FieldType

Gets the explicit field type, or null to infer it from the value's .NET type.

public LlFieldType? FieldType { get; }

Property Value

LlFieldType?

Value

Gets the variable value.

public object Value { get; }

Property Value

object