InitializationFinished Event
Raised when the viewer is fully initialized, meaning the DifferenceBuffer has computed the first diff. At this point, calling any method on this viewer is valid.
Namespace: Microsoft.VisualStudio.Data.Tools.Delta
Assembly: Microsoft.VisualStudio.Data.Tools.Delta (in Microsoft.VisualStudio.Data.Tools.Delta.dll)
Syntax
'Declaration
Event InitializationFinished As EventHandler(Of EventArgs)
'Usage
Dim instance As IDifferenceViewer
Dim handler As EventHandler(Of EventArgs)
AddHandler instance.InitializationFinished, handler
event EventHandler<EventArgs> InitializationFinished
event EventHandler<EventArgs^>^ InitializationFinished {
void add (EventHandler<EventArgs^>^ value);
void remove (EventHandler<EventArgs^>^ value);
}
abstract InitializationFinished : IEvent<EventHandler<EventArgs>,
EventArgs>
JScript supports the use of events, but not the declaration of new ones.