Class StringPaddingData
- Namespace
- SunamoData.Data
- Assembly
- SunamoData.dll
Data about string padding characters at specific positions.
public class StringPaddingData
- Inheritance
-
StringPaddingData
- Inherited Members
- Extension Methods
Properties
First
Gets or sets whether to check the first character [0].
public bool First { get; set; }
Property Value
First2
Gets or sets whether to check the second character [1].
public bool First2 { get; set; }
Property Value
FirstChar
Gets or sets the expected first character [0].
public char FirstChar { get; set; }
Property Value
FirstChar2
Gets or sets the expected second character [1].
public char FirstChar2 { get; set; }
Property Value
Last
Gets or sets whether to check the last character [Length-1].
public bool Last { get; set; }
Property Value
Last2
Gets or sets whether to check the penultimate character [Length-2].
public bool Last2 { get; set; }
Property Value
LastChar
Gets or sets the expected last character [Length-1].
public char LastChar { get; set; }
Property Value
LastChar2
Gets or sets the expected penultimate character [Length-2].
public char LastChar2 { get; set; }
Property Value
Text
Gets or sets the text to be validated.
public string Text { get; set; }