Older Newer
Sat, 09 Dec 2017 08:11:21 . . . . SyneRyder


Changes by last author:

Added:
= setDialogTextv =

== Syntax ==

:bool setDialogTextv(string title, ...)

== Arguments ==

:title

::The text to be set as the title bar caption.

== Return ==

:Returns false/zero if the text couldn't be set, true/non-zero otherwise.

== Description ==

:Sets the caption in the title bar of the filter dialog. You can also use printf-style formatting codes in the text parameter, which are filled in by the additional parameters you provide.

== Example ==

<code>

int version = 1;

strcpy(str0, "Plug-In Name");

strcpy(str1, "Company Name");

setDialogTitlev("%s made by %s, version %d", str0, str1, version);

</code>

== Also see ==

:setDialogText, formatString, setCtlText

== Comments ==

:Everyone can add their comments about their experiences with this function here. Tips for using it are welcome, too.