TG.INI
IniKeyValue Class |
This class represents a key/value line. Ex. Year=2015
Inheritance Hierarchy
Namespace: TG.INI
Assembly: TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
The IniKeyValue type exposes the following members.
Constructors
Name | Description | |
---|---|---|
IniKeyValue |
Initializes a new instance of IniKeyValue.
| |
IniKeyValue(String, Int32) |
Initializes a new instance of IniKeyValue with a key and int value.
| |
IniKeyValue(String, String) |
Initializes a new instance of IniKeyValue with a key and string value.
| |
IniKeyValue(String, String, Boolean) |
Initializes a new instance of IniKeyValue with a key, value and if the value should be encrypted.
| |
IniKeyValue(String, String, Boolean, Boolean) |
Initializes a new instance of IniKeyValue with a key, value and if the value should be encrypted and quoted.
|
Properties
Name | Description | |
---|---|---|
BaseValue |
Gets or Sets the base string value of the IniKeyValue.
| |
EncryptValue |
Gets or Sets if the value should be encrypted.
| |
EntryType |
Get value KeyValue.
(Overrides IniEntryEntryType.) | |
Key |
Gets or Sets the key for this entry.
| |
ParentDocument |
Gets the parent IniDocument.
(Inherited from IniEntry.) | |
QuoteValue |
Gets or Sets whether values should be enclosed in quotation marks.
| |
Value |
Gets or Sets the string value of the entry.
(Overrides IniEntryValue.) | |
ValueBoolean |
Gets or Sets the value as a Boolean.
| |
ValueByte |
Gets or Sets the value as an byte type.
| |
ValueColor |
Get or set a Color value.
| |
ValueDateTime |
Gets or Sets the value as a DateTime.
| |
ValueDecimal |
Gets or Sets the value as a decimal type.
| |
ValueDouble |
Gets or Sets the value as a double type.
| |
ValueFloat |
Gets or Sets the value as a float type.
| |
ValueInt |
Gets or Sets the value as an integer type.
| |
ValueInt16 |
Gets or Sets the value as a short type.
| |
ValueInt64 |
Gets or Sets the value as a 64 bit integer.
| |
ValuePoint |
Get or set a Point value.
| |
ValuePointF |
Get or set a PointF value.
| |
ValueRectangle |
Get or set a Rectangle value.
| |
ValueRectangleF |
Get or set a RectangleF value.
| |
ValueSize |
Get or set a Size value.
| |
ValueSizeF |
Get or set a SizeF value.
|
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
ToString |
Returns the INI key/value output.
(Overrides IniEntryToString.) |
Events
Name | Description | |
---|---|---|
ValueChanged |
Event that is called when a value has changed.
(Inherited from IniEntry.) |
See Also