ArtOfWords.MainService.SaveFileService.CreateNew C# (CSharp) Method

CreateNew() public method

新規作成
public CreateNew ( IEditor iEditor ) : bool
iEditor IEditor テキストを取得するためのIEditorインターフェース
return bool
        public bool CreateNew(IEditor iEditor)
        {
            ModelsComposite.CreateNew(iEditor);
            CurrentFile = "";

            EventAggregator.OnDataReloaded(this, new DataReloadedEventArgs());

            return true;
        }