diff --git a/Contrib/nsDialogs/Readme.html b/Contrib/nsDialogs/Readme.html index bc5da664..670334b2 100644 --- a/Contrib/nsDialogs/Readme.html +++ b/Contrib/nsDialogs/Readme.html @@ -87,8 +87,12 @@ code
Loads and displays a bitmap just like ${NSD_SetImage}, but stretched the image to fit the control.
+${NSD_SetIcon} control_HWND image_path output_variable
Same as ${NSD_SetImage}, but used for loading and setting an icon in a control created by ${NSD_CreateIcon}. The image handle is stored in output_variable and should be freed using ${NSD_FreeIcon} once no longer necessary.
+ +${NSD_SetIconFromInstaller} control_HWND output_variable
Loads the icon used in the isntaller and displays it on control_HWND created by ${NSD_CreateIcon}. The image handle is stored in output_variable and should be freed using ${NSD_FreeIcon} once no longer necessary.
+${NSD_ClearImage} control_HWND
Clears an image from a control.
+${NSD_ClearIcon} control_HWND
Clears an icon from a control.
+${NSD_FreeImage} image_handle
Frees an image handle previously loaded with ${NSD_SetImage} or ${NSD_SetStretchedImage}.
+${NSD_FreeIcon} icon_handle
Frees an icon handle previously loaded with ${NSD_SetIcon} or ${NSD_SetIconFromInstaller}.
+ +