示例#1
0
文件: SciCode.cs 项目: alexfordc/Au
 //Called by PanelEdit.ZOpen.
 internal void _Init(byte[] text, bool newFile)
 {
     if (!IsHandleCreated)
     {
         CreateHandle();
     }
     _fls.SetText(Z, text);
     if (newFile)
     {
         _openState = 1;
     }
     if (_fn.IsCodeFile)
     {
         CiStyling.DocTextAdded(this, newFile);
     }
 }