Class RenderPropertyAsInput
Render Property As Input.
Inherited Members
Namespace: Evergine.Common.Attributes
Assembly: Evergine.Common.dll
Syntax
[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)]
public class RenderPropertyAsInput : RenderProperty
Constructors
RenderPropertyAsInput()
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput()
RenderPropertyAsInput(int)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(int minLimit)
Parameters
Type | Name | Description |
---|---|---|
int | minLimit | Minimum value (Default int.MinValue). |
RenderPropertyAsInput(int, int)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(int minLimit, int maxLimit)
Parameters
Type | Name | Description |
---|---|---|
int | minLimit | Minimum value (Default int.MinValue). |
int | maxLimit | Maximum value (Default int.MaxValue). |
RenderPropertyAsInput(Type)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(Type converterType)
Parameters
Type | Name | Description |
---|---|---|
Type | converterType | the data converter type. |
RenderPropertyAsInput(Type, int)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(Type converterType, int minLimit)
Parameters
Type | Name | Description |
---|---|---|
Type | converterType | the data converter type. |
int | minLimit | Minimum value (Default int.MinValue). |
RenderPropertyAsInput(Type, int, int)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(Type converterType, int minLimit, int maxLimit)
Parameters
Type | Name | Description |
---|---|---|
Type | converterType | the data converter type. |
int | minLimit | Minimum value (Default int.MinValue). |
int | maxLimit | Maximum value (Default int.MaxValue). |
RenderPropertyAsInput(Type, int, int, int)
Initializes a new instance of the RenderPropertyAsInput class.
Declaration
public RenderPropertyAsInput(Type converterType, int minLimit, int maxLimit, int defaultValue)
Parameters
Type | Name | Description |
---|---|---|
Type | converterType | the data converter type. |
int | minLimit | Minimum value (Default float.MinValue). |
int | maxLimit | Maximum value (Default float.MaxValue). |
int | defaultValue | default value (Default null). |
Fields
AsSlider
Show the property as slider.
Declaration
public bool AsSlider
Field Value
Type | Description |
---|---|
bool |
DesiredChange
The desired value change. Zero for default behavior.
Declaration
public int DesiredChange
Field Value
Type | Description |
---|---|
int |
DesiredLargeChange
The desired value large change. Zero for default behavior.
Declaration
public int DesiredLargeChange
Field Value
Type | Description |
---|---|
int |
MaxLimit
Maximum value.
Declaration
public int MaxLimit
Field Value
Type | Description |
---|---|
int |
MinLimit
Minimun value.
Declaration
public int MinLimit
Field Value
Type | Description |
---|---|
int |