UIMenuProgressItem
This item is hydentical to the UIMenuSliderItem and shares the same features.
Constructor
public UIMenuProgressItem(string text, int maxCount, int startIndex)
public UIMenuProgressItem(string text, int maxCount, int startIndex, string description, bool heritage = false)
public UIMenuProgressItem(string text, int maxCount, int startIndex, string description, SColor sliderColor)
function UIMenuProgressItem.New(Text, Max, Index, Description, sliderColor, color, highlightColor, textColor, highlightedTextColor, backgroundSliderColor)
Events
The only difference with UIMenuSliderItem is the changed events naming convention
OnProgressChanged
Triggered when the player changes the progress in the item
public event ItemSliderProgressEvent OnProgressChanged;
OnProgressChanged = function(menu, item, newindex)
end,
OnProgressSelected
Triggered when the player selectes the item after highlighting it For C# users, the item inherits UIMenuItem Activated event.
public event ItemActivatedEvent Activated;
OnProgressSelected = function(menu, item, newindex)
end,