sakura/en/Example Code

Last-modified: 2008-03-23 (日) 22:57:54

Example Code

Each description example of the macro.
However, operation might be different according to the version of Sakura.
Please see help of the side where each macro is being offered about a detailed language specification.

Example1: Key Macro

// Comment
S_InsText( '<br />' );
InsText( "<br />" ); // S_ operates even if it is or it is not it.

Example2: PPA Macro

// Comment
S_InsText( '<br />' ); // Please apply S_ in PPA.

Example3: WSH(JScript)

// Comment
Editor.InsText('<br />')
Editor.InsText("<br />")

Example4: WSH(VBScript)

' Comment
Editor.InsText "<br />"