Load() public method

public Load ( string filepath ) : void
filepath string
return void
コード例 #1
0
        public DocumentView Open(string fileName)
        {
            DocumentView view = new FontEditView();

            view.Load(fileName);
            return(view);
        }
コード例 #2
0
ファイル: PluginMain.cs プロジェクト: Radnen/spherestudio
 public DocumentView Open(string fileName)
 {
     DocumentView view = new FontEditView();
     view.Load(fileName);
     return view;
 }