🦠 Functions
SetBackgroundBrush
NSpinBox:SetBackgroundBrush(NormalBrush, ActiveBrush, HoveredBrush)
SetFillBrush
NSpinBox:SetFillBrush(ActiveBrush, HoveredBrush, InactiveBrush)
SetArrowBrush
NSpinBox:SetArrowBrush(Brush)
SetSpinValue
NSpinBox:SetSpinValue(NewValue)
GetSpinValue
— Returns number.
local ret = NSpinBox:GetSpinValue()
SetMinValue
NSpinBox:SetMinValue(NewMinValue)
GetMinValue
— Returns number.
local ret = NSpinBox:GetMinValue()
SetMaxValue
NSpinBox:SetMaxValue(NewMaxValue)
GetMaxValue
— Returns number.
local ret = NSpinBox:GetMaxValue()
SetMinSliderValue
NSpinBox:SetMinSliderValue(NewMinSliderValue)
GetMinSliderValue
— Returns number.
local ret = NSpinBox:GetMinSliderValue()
SetMaxSliderValue
NSpinBox:SetMaxSliderValue(NewMaxSliderValue)
GetMaxSliderValue
— Returns number.
local ret = NSpinBox:GetMaxSliderValue()
SetDelta
NSpinBox:SetDelta(NewDelta)
GetDelta
— Returns number.
local ret = NSpinBox:GetDelta()
SetTextColor
NSpinBox:SetTextColor(Color)
SetEnableSlider
NSpinBox:SetEnableSlider(EnableSlider?)
SetAlwaysUsesDeltaSnap
NSpinBox:SetAlwaysUsesDeltaSnap(AlwaysUse?)
SetMinFractionalDigits
NSpinBox:SetMinFractionaLDigits(MinFractionalDigits)
SetMaxFractionalDigits
NSpinBox:SetMaxFractionaLDigits(MaxFractionalDigits)
SetFont
NSpinBox:SetFont(Font, Typeface)
SetFontMaterial
NSpinBox:SetFontMaterial(InMaterial)
SetFontMaterial
NSpinBox:SetFontMaterial(InMaterial)
SetFontSize
NSpinBox:SetFontSize(Size)
SetLetterSpacing
NSpinBox:SetLetterSpacing(InLetterSpacing)
SetSkew
NSpinBox:SetSkew(InSkewAmount)
SetOutlineSettings
NSpinBox:SetOutlineSettings(Settings)
SetJustification
NSpinBox:SetJustification(InJustification)
🚀 Events
On Value Changed
Triggered when the value is changed interactively by the user
NSpinBox.OnValueChanged = function(NewValue)
-- On Value Changed was called
end)
On Value Committed
Triggered when the value is committed. Occurs when the user presses Enter or the text box loses focus.
NSpinBox.OnValueCommitted = function(NewValue)
-- On Value Committed was called
end)
On Begin Slider Movement
Triggered right before the slider begins to move
NSpinBox.OnBeginSliderMovement = function()
-- On Begin Slider Movement was called
end)
On End Slider Movement
Triggered right after the slider is released by the user.
NSpinBox.OnEndSliderMovement = function(NewValue)
-- On End Slider Movement was called
end)