DNumberWang:SetFraction
Description
Sets the value of the number selector based on the given fraction number.
Arguments
Example
Sets and prints out the value of a quarter, half, and three-fourths of the number selector range.
local numinput = vgui.Create("DNumberWang")
numinput:SetPos(5, 5)
numinput:SetSize(90, 20)
numinput:SetMinMax(0, 500)
numinput:SetFraction(0.25)
print(numinput:GetValue())
numinput:SetFraction(0.5)
print(numinput:GetValue())
numinput:SetFraction(0.75)
print(numinput:GetValue())
Output:
125
250
375