public TagDescription(TagGroupDescription group, string name, string description, Type datatype, int key, FormatMethod formatMethod)
 {
     this.group        = group;
     this.name         = name;
     this.description  = description;
     this.datatype     = datatype;
     this.key          = key;
     this.formatMethod = formatMethod;
 }
示例#2
0
        private static void addToGroupDictionary(string name, string description)
        {
            TagGroupDescription tg = new TagGroupDescription("Exif." + name, description);

            Groups.Add(tg.Name, tg);
        }
示例#3
0
        private static void addToDictionary(TagGroupDescription group, int key, string name, string description, Type datatype, FormatMethod formatMethod)
        {
            TagDescription td = new TagDescription(group, name, description, datatype, key, formatMethod);

            Tags.Add(td.Fullname, td);
        }
 public TagDescription(TagGroupDescription group, string name, string description, Type datatype, int key) : this(group, name, description, datatype, key, ExifFormating.printDefault)
 {
 }