BIS_fnc_exportGUIBaseClasses

From Bohemia Interactive Community
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Hover & click on the images for description

Description

Description:
Export GUI macros and base classes to the clipboard.
🕖
The following information is obsolete as of Arma 3 v2.01.146644. Reason: the import keyword was introduced.
The exported the Eden Editor base classes have several inheritance issues. If you need the base classes you can get them here.
Execution:
call
Groups:
GUIDiagnosticBroken Functions

Syntax

Syntax:
mode call BIS_fnc_exportGUIBaseClasses
Parameters:
mode: String - mode, case-sensitive; can be one of:
  • "Default" - classic base classes like RscText or RscPicture
  • "3DEN" - Eden Editor base classes like ctrlStatic or ctrlStaticPicture
  • "all" - all GUI base classes, including more exotic ones
All modes are case sensitive. If the capitalisation is disregarded the function will default to the "all" mode. In fact there is no explicit "all" mode, rather it is the fallback if the mode is not one of "Default" or "3DEN".
Return Value:
String - .hpp file content to be included in Description.ext, also copied to the clipboard

Examples

Example 1:
"all" call BIS_fnc_exportGUIBaseClasses;

Additional Information

See also:
Arma: GUI Configuration Arma 3: Utilities

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Killzone_Kid - c
Posted on Sep 28, 2018 - 14:37 (UTC)
You can use Arma 3: Utilities to get the base class for your mission config. For example if you need RscPicture base, enter utils 2 in the debug console and click LOCAL EXEC, type RscPicture and press Enter, check Include Inherited box, then click COPY. The config is now copied to Clipboard and you can paste it in your description.ext and then derive your class from it.