Table of Contents

Class DataStoreTextFieldIntegrationClient

Namespace
Sfrep.AppraiseIt.Client.Integration.DataStore.Fields
Assembly
Sfrep.AppraiseIt.Client.Integration.dll

Encapsulates a text field in the dynamic data store.

public sealed class DataStoreTextFieldIntegrationClient : DataStoreExtendedCommentFieldIntegrationClientBase, IDisposable
Inheritance
object
DataStoreTextFieldIntegrationClient
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()

Properties

DateValue

Gets or sets the field data as a DateTime value.

public DateTime? DateValue { get; set; }

Property Value

DateTime?

NumericValue

Gets or sets the field data as a decimal value. If the field data is not numeric, 0 is returned.

public decimal NumericValue { get; set; }

Property Value

decimal

Plaintext

Gets or sets the field data in plain text format.

public string Plaintext { get; set; }

Property Value

string

StringListValue

Gets or sets the field data as a list of enum string values.

public IReadOnlyList<string> StringListValue { get; set; }

Property Value

IReadOnlyList<string>

Remarks

This method can be used to get / set the list of items selected in checked ComboBox fields.

Methods

Dispose(bool)

Frees resources used by this instance.

protected override void Dispose(bool disposing)

Parameters

disposing bool

True if called by the Dispose() method. False if called by the finalizer.