// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)usingSystem;usingTango.Scripting.Editors.Document;namespaceTango.Scripting.Editors.Rendering{/// <summary>/// EventArgs for the <see cref="TextView.VisualLineConstructionStarting"/> event./// </summary>publicclassVisualLineConstructionStartEventArgs:EventArgs{/// <summary>/// Gets/Sets the first line that is visible in the TextView./// </summary>publicDocumentLineFirstLineInView{get;privateset;}/// <summary>/// Creates a new VisualLineConstructionStartEventArgs instance./// </summary>publicVisualLineConstructionStartEventArgs(DocumentLinefirstLineInView){if(firstLineInView==null)thrownewArgumentNullException("firstLineInView");this.FirstLineInView=firstLineInView;}}}