getLineNumber method

int? getLineNumber(
  1. LineHandle handle
)

Given a line handle, returns the current position of that line (or null when it is no longer in the document).

Implementation

int? getLineNumber(LineHandle handle) {
  return callArg('getLineNumber', handle.jsProxy);
}