Alsing.SourceCode.Row.EnsureVisible C# (CSharp) Метод

EnsureVisible() публичный Метод

If the row is hidden inside a collapsed span , call this method to make the collapsed segments expanded.
public EnsureVisible ( ) : void
Результат void
        public void EnsureVisible()
        {
            if (RowState == RowState.NotParsed)
                return;

            Span seg = startSpan;
            while (seg != null)
            {
                seg.Expanded = true;
                seg = seg.Parent;
            }
            Document.ResetVisibleRows();
        }