コード例 #1
0
ファイル: RunQueryEvent.cs プロジェクト: warthurton/DaxStudio
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
 }
コード例 #2
0
ファイル: RunQueryEvent.cs プロジェクト: warthurton/DaxStudio
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     RunStyle      = new RunStyle("Run", RunStyleIcons.RunOnly, false, false, false, "");
 }
コード例 #3
0
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }
コード例 #4
0
 public NewDocumentEvent(IResultsTarget target, DocumentViewModel activeDocument)
 {
     _target        = target;
     ActiveDocument = activeDocument;
 }
コード例 #5
0
ファイル: RunQueryEvent.cs プロジェクト: x-strong/DaxStudio
 public RunQueryEvent(IResultsTarget target)
 {
     ResultsTarget = target;
     ClearCache    = false;
 }
コード例 #6
0
ファイル: RunQueryEvent.cs プロジェクト: x-strong/DaxStudio
 public RunQueryEvent(IResultsTarget target, bool clearCache)
 {
     ResultsTarget = target;
     ClearCache    = clearCache;
 }
コード例 #7
0
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
コード例 #8
0
 public QueryResultsPaneMessageEvent(IResultsTarget target)
 {
     _target = target;
 }
コード例 #9
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle, bool isBenchmark)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = isBenchmark;
 }
コード例 #10
0
 public RunQueryEvent(IResultsTarget target, RunStyle runStyle)
 {
     ResultsTarget = target;
     RunStyle      = runStyle;
     IsBenchmark   = false;
 }
コード例 #11
0
 public NewDocumentEvent(IResultsTarget target)
 {
     _target = target;
 }