The manual of ULP says that this command "Defines an empty stretchable space in a box layout context". It gives the below trivial example:
dlgHBoxLayout {
dlgStretch(1);
dlgPushButton("+OK") { dlgAccept(); };
dlgPushButton("Cancel") { dlgReject(); };
}
This would be used as part of a bigger script containing dlgDialog. The thing is that changing the value of the parameter passed to this function makes no different at all. I am confused what this function is supposed to be used for.