====== IsLineSaved ======
Method of [[:scripting:api:text-document:start|ITextDocument]]
===== Description =====
Returns true, if line has been modified and saved
===== Parameters =====
* [[scripting:api:data-type:long|long]] **nLine**
==== Return Value ====
* [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbValue**
===== Syntax =====
==== JavaScript ====
var pbValue = TextDocument.IsLineSaved(nLine);
==== Visual Basic Script ====
pbValue = TextDocument.IsLineSaved nLine
==== C++ ====
VARIANT_BOOL bValue;
HRESULT hr = TextDocument.IsLineSaved(nLine, &bValue);
===== See Also =====
[[:scripting:api:text-document:start|ITextDocument]]
~~NOTOC~~