Show / Hide Table of Contents

Class Field

A field.

Inheritance
object
Field
TypedField<FieldType>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public abstract class Field

Properties

ChangeDirection

Gets the change direction.

Declaration
public ChangeDirection ChangeDirection { get; }
Property Value
Type Description
ChangeDirection

The change direction.

DepthLevel

Gets the depth level.

Declaration
public uint DepthLevel { get; }
Property Value
Type Description
uint

The depth level.

DetailedDepthLevel

Declaration
public uint DetailedDepthLevel { get; }
Property Value
Type Description
uint

FieldId

Gets the identifier of the field.

Declaration
public FieldId FieldId { get; }
Property Value
Type Description
FieldId

The identifier of the field.

FormattedValue

Gets the formatted value.

Declaration
public virtual string FormattedValue { get; }
Property Value
Type Description
string

The formatted value.

HasChanged

Gets a value indicating whether this object has changed.

Declaration
public bool HasChanged { get; }
Property Value
Type Description
bool

True if this object has changed, false if not.

HasDirectionChanged

Gets a value indicating whether this object has direction changed.

Declaration
public bool HasDirectionChanged { get; }
Property Value
Type Description
bool

True if this object has direction changed, false if not.

HasValidValue

Gets a value indicating whether this object has valid value.

Declaration
public bool HasValidValue { get; }
Property Value
Type Description
bool

True if this object has valid value, false if not.

HasValue

Gets a value indicating whether this object has value.

Declaration
public bool HasValue { get; }
Property Value
Type Description
bool

True if this object has value, false if not.

HasValueChanged

Gets a value indicating whether this object has value changed.

Declaration
public bool HasValueChanged { get; }
Property Value
Type Description
bool

True if this object has value changed, false if not.

Instrument

Gets the instrument .

Declaration
public Instrument Instrument { get; }
Property Value
Type Description
Instrument

The instrument .

Methods

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()
In this article
Back to top