Class CharEditor
Default implementation of the inspector used to edit char value type properties.
Namespace: FlaxEditor.CustomEditors.Editors
Assembly: FlaxEngine.CSharp.dll
Syntax
[CustomEditor]
[DefaultEditor]
public sealed class CharEditor : UnsignedIntegerValueEditor
Constructors
CharEditor()
Declaration
public CharEditor()
Methods
GetLimits(out UInt64, out UInt64)
Gets the value limits.
Declaration
protected override void GetLimits(out ulong min, out ulong max)
Parameters
System.UInt64
min
The minimum value. |
System.UInt64
max
The maximum value. |
Overrides
GetValue(Object)
Gets the value as long.
Declaration
protected override ulong GetValue(object value)
Parameters
System.Object
value
The value from object. |
Returns
System.UInt64
The value for editor. |
Overrides
SetValue(UInt64)
Sets the value from long.
Declaration
protected override object SetValue(ulong value)
Parameters
System.UInt64
value
The value from editor. |
Returns
System.Object
The value to object. |