C# Class FullInspector.InspectorRangeAttribute

Inheritance: System.Attribute
Exibir arquivo Open project: jacobdufault/fullinspector

Public Properties

Property Type Description
Max float
Min float
Step float

Public Methods

Method Description
InspectorRangeAttribute ( float min, float max, float step = float.NaN ) : System

Method Details

InspectorRangeAttribute() public method

public InspectorRangeAttribute ( float min, float max, float step = float.NaN ) : System
min float
max float
step float
return System

Property Details

Max public_oe property

The maximum value.
public float Max
return float

Min public_oe property

The minimum value.
public float Min
return float

Step public_oe property

The step to use. This is optional.
public float Step
return float