//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(968, "SpaceSpreadsheet", 120)] public class SpaceSpreadsheet { [DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 8, true, 0)] public SpaceLink ptr_next; [DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 8, true, 8)] public SpaceLink ptr_prev; [DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false, 16)] public ListBase regionbase; [DNAFieldAttribute(3, "char", "spacetype", "char", 1, false, 32)] public char spacetype; [DNAFieldAttribute(4, "char", "link_flag", "char", 1, false, 33)] public char link_flag; [DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false, 34)] public char[] _pad0 = new System.Char[6]; [DNAFieldAttribute(6, "ListBase", "columns", "ListBase", 16, false, 40)] public ListBase columns; [DNAFieldAttribute(7, "ListBase", "row_filters", "ListBase", 16, false, 56)] public ListBase row_filters; [DNAFieldAttribute(8, "ViewerPath", "viewer_path", "ViewerPath", 16, false, 72)] public ViewerPath viewer_path; [DNAFieldAttribute(9, "SpreadsheetInstanceID", "*instance_ids", "SpreadsheetInstanceID", 8, true, 88)] public SpreadsheetInstanceID ptr_instance_ids; [DNAFieldAttribute(10, "int", "instance_ids_num", "int", 4, false, 96)] public int instance_ids_num; [DNAFieldAttribute(11, "uchar", "filter_flag", "uchar", 1, false, 100)] public byte filter_flag; [DNAFieldAttribute(12, "uchar", "geometry_component_type", "uchar", 1, false, 101)] public byte geometry_component_type; [DNAFieldAttribute(13, "uchar", "attribute_domain", "uchar", 1, false, 102)] public byte attribute_domain; [DNAFieldAttribute(14, "uchar", "object_eval_state", "uchar", 1, false, 103)] public byte object_eval_state; [DNAFieldAttribute(15, "int", "active_layer_index", "int", 4, false, 104)] public int active_layer_index; [DNAFieldAttribute(16, "int", "flag", "int", 4, false, 108)] public int flag; [DNAFieldAttribute(17, "SpaceSpreadsheet_Runtime", "*runtime", "SpaceSpreadsheet_Runtime", 8, true, 112)] public SpaceSpreadsheet_Runtime ptr_runtime; public SpaceSpreadsheet() { this.ptr_next = default; this.ptr_prev = default; this.regionbase = default; this.spacetype = default; this.link_flag = default; this._pad0 = default; this.columns = default; this.row_filters = default; this.viewer_path = default; this.ptr_instance_ids = default; this.instance_ids_num = default; this.filter_flag = default; this.geometry_component_type = default; this.attribute_domain = default; this.object_eval_state = default; this.active_layer_index = default; this.flag = default; this.ptr_runtime = default; } public SpaceSpreadsheet( SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, ListBase columns, ListBase row_filters, ViewerPath viewer_path, SpreadsheetInstanceID ptr_instance_ids, int instance_ids_num, byte filter_flag, byte geometry_component_type, byte attribute_domain, byte object_eval_state, int active_layer_index, int flag, SpaceSpreadsheet_Runtime ptr_runtime) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.regionbase = regionbase; this.spacetype = spacetype; this.link_flag = link_flag; this._pad0 = _pad0; this.columns = columns; this.row_filters = row_filters; this.viewer_path = viewer_path; this.ptr_instance_ids = ptr_instance_ids; this.instance_ids_num = instance_ids_num; this.filter_flag = filter_flag; this.geometry_component_type = geometry_component_type; this.attribute_domain = attribute_domain; this.object_eval_state = object_eval_state; this.active_layer_index = active_layer_index; this.flag = flag; this.ptr_runtime = ptr_runtime; } } }