public static void SetDefaultExportFormat(PlaylistFormatDescription format)
 {
     try {
         DefaultExportFormat.Set(format.FileExtension);
     } catch (Exception) {
     }
 }
Example #2
0
 public void MakeDefault()
 {
     if (!IsDefault)
     {
         schema.Set(val);
     }
 }
Example #3
0
        public void Shutdown()
        {
            for (int i = 0; i < columns.Count; ++i)
            {
                TreeViewColumn    tmpCol    = columns[i] as TreeViewColumn;
                SchemaEntry <int> tmpSchema = (SchemaEntry <int>)schemas[i];

                if (tmpCol.Width != 0)
                {
                    tmpSchema.Set(tmpCol.Width);
                }
            }
        }
Example #4
0
 public virtual void SortChildSources(SourceSortType sort_type)
 {
     child_sort = sort_type;
     child_sort_schema.Set(child_sort.Id);
     SortChildSources();
 }