Number Box in SOLIDWORKS Property Manager Page
Number box will be automatically created for the properties of int and double types.
public int Number { get; set; } public double FloatingNumber { get; set; }
Style of the number box can be customized via the NumberBoxOptionsAttribute
[NumberBoxOptions(NumberBoxUnitType_e.Length, 0, 1000, 0.01, true, 0.02, 0.001, NumberBoxStyle_e.Thumbwheel)] public double Length { get; set; }