This changes enables the settings (most of them) which are supplied in the greenshot-fixed.ini to be unchangeable in the settings.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1969 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-07-30 18:09:19 +00:00
commit 48159a99b0
7 changed files with 122 additions and 55 deletions

View file

@ -57,18 +57,27 @@ namespace Greenshot.IniFile {
}
}
/// <summary>
/// Returns the IniSection this value is contained in
/// </summary>
public IniSection ContainingIniSection {
get {
return containingIniSection;
}
}
/// <summary>
/// Get the in the ini file defined attributes
/// </summary>
public IniPropertyAttribute Attributes {
get {
return attributes;
}
}
/// <summary>
/// Get the value for this IniValue
/// </summary>
public object Value {
get {
if (propertyInfo == null) {
@ -86,6 +95,9 @@ namespace Greenshot.IniFile {
}
}
/// <summary>
/// Get the Type of the value
/// </summary>
public Type ValueType {
get {
Type valueType = null;