Class Constraint
Defines a constraint variable.
Inheritance
System.Object
Constraint
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class Constraint
Constructors
Constraint(String, Boolean, Single)
Creates a new constraint variable.
Declaration
public Constraint(string name, bool isMax, float defaultValue)
Parameters
System.String
name
|
System.Boolean
isMax
|
System.Single
defaultValue
|
Properties
DefaultValue
Gets the default value.
Declaration
public float DefaultValue { get; }
Property Value
System.Single
|
IsMax
Gets the is max boolean.
Declaration
public bool IsMax { get; }
Property Value
System.Boolean
|
Name
Gets or sets the name.
Declaration
public string Name { get; }
Property Value
System.String
|