Table of Contents

Class ReplaceArgs

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Represents arguments for a replacement operation with old and new value labels.

public class ReplaceArgs
Inheritance
ReplaceArgs
Inherited Members
Extension Methods

Constructors

ReplaceArgs(string, string, string)

Initializes a new instance of the ReplaceArgs class.

public ReplaceArgs(string initialMessage, string lblOldValue, string lblNewValue)

Parameters

initialMessage string

The initial message displayed to the user.

lblOldValue string

The label for the old value.

lblNewValue string

The label for the new value.

Properties

InitialMessage

Gets or sets the initial message displayed to the user.

public string InitialMessage { get; set; }

Property Value

string

LblNewValue

Gets or sets the label for the new value.

public string LblNewValue { get; set; }

Property Value

string

LblOldValue

Gets or sets the label for the old value.

public string LblOldValue { get; set; }

Property Value

string