IniKeyValue Class

TG.INI

IniKeyValue Class

This class represents a key/value line. Ex. Year=2015
Inheritance Hierarchy
SystemObject  TG.INIIniEntry
    TG.INIIniKeyValue

Namespace:  TG.INI
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public class IniKeyValue : IniEntry
Public Class IniKeyValue
	Inherits IniEntry
public ref class IniKeyValue : public IniEntry
type IniKeyValue =  
    class
        inherit IniEntry
    end

The IniKeyValue type exposes the following members.

Constructors
  NameDescription
Public methodIniKeyValue
Initializes a new instance of IniKeyValue.
Public methodIniKeyValue(String, Int32)
Initializes a new instance of IniKeyValue with a key and int value.
Public methodIniKeyValue(String, String)
Initializes a new instance of IniKeyValue with a key and string value.
Public methodIniKeyValue(String, String, Boolean)
Initializes a new instance of IniKeyValue with a key, value and if the value should be encrypted.
Public methodIniKeyValue(String, String, Boolean, Boolean)
Initializes a new instance of IniKeyValue with a key, value and if the value should be encrypted and quoted.
Top
Properties
  NameDescription
Public propertyBaseValue
Gets or Sets the base string value of the IniKeyValue.
Public propertyEncryptValue
Gets or Sets if the value should be encrypted.
Public propertyEntryType
Get value KeyValue.
(Overrides IniEntryEntryType.)
Public propertyKey
Gets or Sets the key for this entry.
Public propertyParentDocument
Gets the parent IniDocument.
(Inherited from IniEntry.)
Public propertyQuoteValue
Gets or Sets whether values should be enclosed in quotation marks.
Public propertyValue
Gets or Sets the string value of the entry.
(Overrides IniEntryValue.)
Public propertyValueBoolean
Gets or Sets the value as a Boolean.
Public propertyValueByte
Gets or Sets the value as an byte type.
Public propertyValueColor
Get or set a Color value.
Public propertyValueDateTime
Gets or Sets the value as a DateTime.
Public propertyValueDecimal
Gets or Sets the value as a decimal type.
Public propertyValueDouble
Gets or Sets the value as a double type.
Public propertyValueFloat
Gets or Sets the value as a float type.
Public propertyValueInt
Gets or Sets the value as an integer type.
Public propertyValueInt16
Gets or Sets the value as a short type.
Public propertyValueInt64
Gets or Sets the value as a 64 bit integer.
Public propertyValuePoint
Get or set a Point value.
Public propertyValuePointF
Get or set a PointF value.
Public propertyValueRectangle
Get or set a Rectangle value.
Public propertyValueRectangleF
Get or set a RectangleF value.
Public propertyValueSize
Get or set a Size value.
Public propertyValueSizeF
Get or set a SizeF value.
Top
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString
Returns the INI key/value output.
(Overrides IniEntryToString.)
Top
Events
  NameDescription
Public eventValueChanged
Event that is called when a value has changed.
(Inherited from IniEntry.)
Top
See Also