コード例 #1
0
ファイル: TextModel.cs プロジェクト: ron-myers/BlazorMonaco
 public async Task SetEOL(EndOfLineSequence eol)
 {
     if (jsRuntime == null)
     {
         return;
     }
     await jsRuntime.InvokeVoidAsync("blazorMonaco.editor.model.setEOL", Uri, eol);
 }
コード例 #2
0
 public IAsyncAction SetEOLAsync(EndOfLineSequence eol)
 {
     throw new NotImplementedException();
 }