### YamlMime:ManagedReference items: - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown commentId: T:DesktopMagicPluginAPI.Inputs.IntegerUpDown id: IntegerUpDown parent: DesktopMagicPluginAPI.Inputs children: - DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor(System.Int32,System.Int32,System.Int32) - DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum - DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum - DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value langs: - csharp - vb name: IntegerUpDown nameWithType: IntegerUpDown fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown type: Class source: remote: path: src/DesktopMagicPluginAPI/Inputs/IntegerUpDown.cs branch: develop repo: https://github.com/Stone-Red-Code/DesktopMagic.git id: IntegerUpDown path: Inputs/IntegerUpDown.cs startLine: 7 assemblies: - DesktopMagicPluginAPI namespace: DesktopMagicPluginAPI.Inputs summary: "\nRepresents a up-down control.\n" example: [] syntax: content: 'public class IntegerUpDown : Element' content.vb: >- Public Class IntegerUpDown Inherits Element inheritance: - System.Object - DesktopMagicPluginAPI.Inputs.Element inheritedMembers: - DesktopMagicPluginAPI.Inputs.Element.OnValueChanged - DesktopMagicPluginAPI.Inputs.Element.ValueChanged - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString modifiers.csharp: - public - class modifiers.vb: - Public - Class - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum commentId: P:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum id: Maximum parent: DesktopMagicPluginAPI.Inputs.IntegerUpDown langs: - csharp - vb name: Maximum nameWithType: IntegerUpDown.Maximum fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum type: Property source: remote: path: src/DesktopMagicPluginAPI/Inputs/IntegerUpDown.cs branch: develop repo: https://github.com/Stone-Red-Code/DesktopMagic.git id: Maximum path: Inputs/IntegerUpDown.cs startLine: 14 assemblies: - DesktopMagicPluginAPI namespace: DesktopMagicPluginAPI.Inputs summary: "\nGets or sets the maximum value for the element.\n" example: [] syntax: content: public int Maximum { get; } parameters: [] return: type: System.Int32 content.vb: Public ReadOnly Property Maximum As Integer overload: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum commentId: P:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum id: Minimum parent: DesktopMagicPluginAPI.Inputs.IntegerUpDown langs: - csharp - vb name: Minimum nameWithType: IntegerUpDown.Minimum fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum type: Property source: remote: path: src/DesktopMagicPluginAPI/Inputs/IntegerUpDown.cs branch: develop repo: https://github.com/Stone-Red-Code/DesktopMagic.git id: Minimum path: Inputs/IntegerUpDown.cs startLine: 19 assemblies: - DesktopMagicPluginAPI namespace: DesktopMagicPluginAPI.Inputs summary: "\nGets or sets the minimum value for the element.\n" example: [] syntax: content: public int Minimum { get; } parameters: [] return: type: System.Int32 content.vb: Public ReadOnly Property Minimum As Integer overload: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum* modifiers.csharp: - public - get modifiers.vb: - Public - ReadOnly - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value commentId: P:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value id: Value parent: DesktopMagicPluginAPI.Inputs.IntegerUpDown langs: - csharp - vb name: Value nameWithType: IntegerUpDown.Value fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value type: Property source: remote: path: src/DesktopMagicPluginAPI/Inputs/IntegerUpDown.cs branch: develop repo: https://github.com/Stone-Red-Code/DesktopMagic.git id: Value path: Inputs/IntegerUpDown.cs startLine: 24 assemblies: - DesktopMagicPluginAPI namespace: DesktopMagicPluginAPI.Inputs summary: "\nGets or sets the value assigned to the element.\n" example: [] syntax: content: public int Value { get; set; } parameters: [] return: type: System.Int32 content.vb: Public Property Value As Integer overload: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value* modifiers.csharp: - public - get - set modifiers.vb: - Public - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor(System.Int32,System.Int32,System.Int32) commentId: M:DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor(System.Int32,System.Int32,System.Int32) id: '#ctor(System.Int32,System.Int32,System.Int32)' parent: DesktopMagicPluginAPI.Inputs.IntegerUpDown langs: - csharp - vb name: IntegerUpDown(Int32, Int32, Int32) nameWithType: IntegerUpDown.IntegerUpDown(Int32, Int32, Int32) fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.IntegerUpDown(System.Int32, System.Int32, System.Int32) type: Constructor source: remote: path: src/DesktopMagicPluginAPI/Inputs/IntegerUpDown.cs branch: develop repo: https://github.com/Stone-Red-Code/DesktopMagic.git id: .ctor path: Inputs/IntegerUpDown.cs startLine: 44 assemblies: - DesktopMagicPluginAPI namespace: DesktopMagicPluginAPI.Inputs summary: "\nInitializes a new instance of the class with the provided min value, max value and value.\n" example: [] syntax: content: public IntegerUpDown(int min, int max, int value = 0) parameters: - id: min type: System.Int32 description: The maximum value for the element. - id: max type: System.Int32 description: The minimum value for the element. - id: value type: System.Int32 description: The value assigned to the element. content.vb: Public Sub New(min As Integer, max As Integer, value As Integer = 0) overload: DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor* exceptions: - type: System.ArgumentException commentId: T:System.ArgumentException modifiers.csharp: - public modifiers.vb: - Public references: - uid: DesktopMagicPluginAPI.Inputs commentId: N:DesktopMagicPluginAPI.Inputs name: DesktopMagicPluginAPI.Inputs nameWithType: DesktopMagicPluginAPI.Inputs fullName: DesktopMagicPluginAPI.Inputs - uid: System.Object commentId: T:System.Object parent: System isExternal: true name: Object nameWithType: Object fullName: System.Object - uid: DesktopMagicPluginAPI.Inputs.Element commentId: T:DesktopMagicPluginAPI.Inputs.Element parent: DesktopMagicPluginAPI.Inputs name: Element nameWithType: Element fullName: DesktopMagicPluginAPI.Inputs.Element - uid: DesktopMagicPluginAPI.Inputs.Element.OnValueChanged commentId: E:DesktopMagicPluginAPI.Inputs.Element.OnValueChanged parent: DesktopMagicPluginAPI.Inputs.Element name: OnValueChanged nameWithType: Element.OnValueChanged fullName: DesktopMagicPluginAPI.Inputs.Element.OnValueChanged - uid: DesktopMagicPluginAPI.Inputs.Element.ValueChanged commentId: M:DesktopMagicPluginAPI.Inputs.Element.ValueChanged parent: DesktopMagicPluginAPI.Inputs.Element name: ValueChanged() nameWithType: Element.ValueChanged() fullName: DesktopMagicPluginAPI.Inputs.Element.ValueChanged() spec.csharp: - uid: DesktopMagicPluginAPI.Inputs.Element.ValueChanged name: ValueChanged nameWithType: Element.ValueChanged fullName: DesktopMagicPluginAPI.Inputs.Element.ValueChanged - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: DesktopMagicPluginAPI.Inputs.Element.ValueChanged name: ValueChanged nameWithType: Element.ValueChanged fullName: DesktopMagicPluginAPI.Inputs.Element.ValueChanged - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true name: Equals(Object) nameWithType: Object.Equals(Object) fullName: System.Object.Equals(System.Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true name: Equals(Object, Object) nameWithType: Object.Equals(Object, Object) fullName: System.Object.Equals(System.Object, System.Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true name: GetHashCode() nameWithType: Object.GetHashCode() fullName: System.Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true name: GetType() nameWithType: Object.GetType() fullName: System.Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true name: MemberwiseClone() nameWithType: Object.MemberwiseClone() fullName: System.Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true name: ReferenceEquals(Object, Object) nameWithType: Object.ReferenceEquals(Object, Object) fullName: System.Object.ReferenceEquals(System.Object, System.Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true name: ToString() nameWithType: Object.ToString() fullName: System.Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System commentId: N:System isExternal: true name: System nameWithType: System fullName: System - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown commentId: T:DesktopMagicPluginAPI.Inputs.IntegerUpDown name: IntegerUpDown nameWithType: IntegerUpDown fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum* commentId: Overload:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum name: Maximum nameWithType: IntegerUpDown.Maximum fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Maximum - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true name: Int32 nameWithType: Int32 fullName: System.Int32 - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum* commentId: Overload:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum name: Minimum nameWithType: IntegerUpDown.Minimum fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Minimum - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value* commentId: Overload:DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value name: Value nameWithType: IntegerUpDown.Value fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.Value - uid: System.ArgumentException commentId: T:System.ArgumentException isExternal: true - uid: DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor* commentId: Overload:DesktopMagicPluginAPI.Inputs.IntegerUpDown.#ctor name: IntegerUpDown nameWithType: IntegerUpDown.IntegerUpDown fullName: DesktopMagicPluginAPI.Inputs.IntegerUpDown.IntegerUpDown