IupElementPropertiesDialog
3
IupElementPropertiesDialog
@serial = 732
dialog
Description
Creates an Element Properties Dialog. It is a predefined dialog to edit the properties of an element in run time. It is a standard IupDialog constructed with other IUP elements. The dialog can be shown with any of the show functions IupShow, IupShowXY or IupPopup.
Any existent element can be edited. It does not need to be mapped on the native system nor visible. It could have been created in C, LED or Lua.
This is a dialog intended for developers, so they can see and inspect their elements in other ways.
It contains 3 Tab sections: one for the registered attributes of the element, one for custom attributes set at the hash table, and one for the callbacks. The callbacks are just for inspection, and custom attribute should be handled carefully because they may be not strings. Registered attributes values are shown in red when they were changed by the application.
Include
iup.e
Namespace
iup
Signature
public function IupElementPropertiesDialog(atom elem)
Creation
elem: identifier of the element to display the properties. Not optional.
Returns: the identifier of the created dialog, or NULL if an error occurs.
Attribute
Check the IupDialog attributes.
Callback
Check the IupDialog callbacks.
Example
IupShow(IupElementPropertiesDialog(button)); [in C]
The following dialog layout is displayed next.
See Also
IupFileDlg | IupMessageDlg | IupFontDlg | IupProgressDlg | IupAlarm | IupGetFile | IupGetColor | IupGetParam | IupGetText | IupListDialog | IupMessage | IupScanf | IupLayoutDialog | IupElementPropertiesDialog |
Not Categorized, Please Help
|