Background for Skyrim SE
Member of the DbSkseFunctions script
string[]functionGetUiTargetMembers(stringmenuName, stringtarget)NativeGlobal

Description

Documentation Comment

Get all target members that the UI target has.
Example, start with "GetUiTargetMembers("InventoryMenu", "_root)"
This will get all target members that _root has. One will be Menu_mc.
Then you can do "GetUiTargetMembers("InventoryMenu", "_root.Menu_mc)"
And so on and so forth. Another good starting place is for example "GetUiTargetMembers("InventoryMenu", "_global)"


Parameters

  1. stringmenuName

  2. stringtarget


Examples

Auto-Generated Example

string myString__menuName
string myString__target

string[] returnedValue = DbSkseFunctions.GetUiTargetMembers(myString__menuName, myString__target)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.