ShowOverlay() public abstract method

public abstract ShowOverlay ( ) : void
return void
Exemplo n.º 1
0
 public override void ShowOverlay()
 {
     if (this.HasSelectedinstruction())
     {
         BaseInspectView inspectViewForType = this.GetInspectViewForType(this.m_Instructions[this.m_ListViewState.row].type);
         inspectViewForType.ShowOverlay();
     }
 }
Exemplo n.º 2
0
 public override void ShowOverlay()
 {
     if (!this.isInstructionSelected)
     {
         base.debuggerWindow.ClearInstructionHighlighter();
     }
     else
     {
         BaseInspectView inspectViewForType = this.GetInspectViewForType(this.m_Instructions[base.listViewState.row].type);
         inspectViewForType.ShowOverlay();
     }
 }