87 lines
3.0 KiB
C#
87 lines
3.0 KiB
C#
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
|
namespace BlendFile.DNA {
|
|
|
|
public class SpaceText {
|
|
public SpaceLink ptr_next;
|
|
public SpaceLink ptr_prev;
|
|
public ListBase regionbase;
|
|
public char spacetype;
|
|
public char link_flag;
|
|
public char[] _pad0 = new System.Char[6];
|
|
public Text ptr_text;
|
|
public int top;
|
|
public int left;
|
|
public char[] _pad1 = new System.Char[4];
|
|
public short flags;
|
|
public short lheight;
|
|
public int tabnumber;
|
|
public char wordwrap;
|
|
public char doplugins;
|
|
public char showlinenrs;
|
|
public char showsyntax;
|
|
public char line_hlight;
|
|
public char overwrite;
|
|
public char live_edit;
|
|
public char[] _pad2 = new System.Char[1];
|
|
public char[] findstr = new System.Char[256];
|
|
public char[] replacestr = new System.Char[256];
|
|
public short margin_column;
|
|
public char[] _pad3 = new System.Char[2];
|
|
public SpaceText_Runtime ptr_runtime;
|
|
public SpaceText(
|
|
SpaceLink ptr_next,
|
|
SpaceLink ptr_prev,
|
|
ListBase regionbase,
|
|
char spacetype,
|
|
char link_flag,
|
|
char[] _pad0,
|
|
Text ptr_text,
|
|
int top,
|
|
int left,
|
|
char[] _pad1,
|
|
short flags,
|
|
short lheight,
|
|
int tabnumber,
|
|
char wordwrap,
|
|
char doplugins,
|
|
char showlinenrs,
|
|
char showsyntax,
|
|
char line_hlight,
|
|
char overwrite,
|
|
char live_edit,
|
|
char[] _pad2,
|
|
char[] findstr,
|
|
char[] replacestr,
|
|
short margin_column,
|
|
char[] _pad3,
|
|
SpaceText_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.ptr_text = ptr_text;
|
|
this.top = top;
|
|
this.left = left;
|
|
this._pad1 = _pad1;
|
|
this.flags = flags;
|
|
this.lheight = lheight;
|
|
this.tabnumber = tabnumber;
|
|
this.wordwrap = wordwrap;
|
|
this.doplugins = doplugins;
|
|
this.showlinenrs = showlinenrs;
|
|
this.showsyntax = showsyntax;
|
|
this.line_hlight = line_hlight;
|
|
this.overwrite = overwrite;
|
|
this.live_edit = live_edit;
|
|
this._pad2 = _pad2;
|
|
this.findstr = findstr;
|
|
this.replacestr = replacestr;
|
|
this.margin_column = margin_column;
|
|
this._pad3 = _pad3;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|