Example #1
0
		public static byte[] EncryptSectionType(odfSectionType type)
		{
			return Encoding.ASCII.GetBytes(GetEnumDescription(type));
		}
Example #2
0
 public static byte[] EncryptSectionType(odfSectionType type)
 {
     return(Encoding.ASCII.GetBytes(GetEnumDescription(type)));
 }
Example #3
0
		public odfFileSection(odfSectionType type, string path)
		{
			Type = type;
			Name = type.ToString();
			ODFPath = path;
		}
Example #4
0
 public odfFileSection(odfSectionType type, string path)
 {
     Type    = type;
     Name    = type.ToString();
     ODFPath = path;
 }