I've been following the PDF here to create edit tabs for some step types, I'd like to add in a way to manage a string array. The issue is I'm not sure what I'm supposed to pass as the rootProperty object parameter of GetValue() and SetValue() when I have an instance of IPropertySpecifier.
Example:
// Get Specifier of Array of String property
IPropertySpecifier specifier = StepCollection.GetPropertySpecifier("Items");
specifier.GetValue(not sure what I pass here)
Usually you set the PropertySpecifier of a control but I can't see a control to manage an array so I'm trying to manually populate a flow control.