From febdac2ccdef0a2ced895ac8d9be6a9ea49396b4 Mon Sep 17 00:00:00 2001 From: Merlijn Wajer Date: Wed, 13 Oct 2010 13:52:41 +0200 Subject: [PATCH] simbadoc: Add SetScriptProp SP_WriteTimeStamp. --- Doc/sphinx/features/notwellknown.rst | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Doc/sphinx/features/notwellknown.rst b/Doc/sphinx/features/notwellknown.rst index c2a0e87..125ab16 100644 --- a/Doc/sphinx/features/notwellknown.rst +++ b/Doc/sphinx/features/notwellknown.rst @@ -1,8 +1,15 @@ Not Well Known Features ======================= +Timestamped Writeln +------------------- -.. note:: - XXX - Timestamps in PSwriteln +Simba can timestamp all your *writeln* calls. + +.. code-block:: pascal + + SetScriptProp(SP_WriteTimeStamp, [True]); + WriteLn('Before the wait'); + Wait(1000); + Writeln('After the wait');