Gets or sets the index of the first visible (graphically top most) line of currently active document.

Namespace: Sgry.Azuki.WinForms
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
public int FirstVisibleLine { get; set; }
Visual Basic
Public Property FirstVisibleLine As Integer
	Get
	Set

Property Value

Type: Int32

Remarks

This property gets or sets the index of the first visible (graphically top most) line of currently active document. Changing this property value does not trigger redrawing. To redraw manually, you need to call Invalidate()()()() method.

This property is just a synonym of Document.ViewParam.FirstVisibleLine so changing Document property will also changes this property value.

See Also