Class CustomMousepadEffect
Custom effect for mouse pad.
Implements
Namespace: Colore.Effects.Mousepad
Assembly: Colore.dll
Syntax
public sealed class CustomMousepadEffect : ValueType, IEquatable<CustomMousepadEffect>
Constructors
CustomMousepadEffect(Color)
Initializes a new instance of the Custom
Declaration
public CustomMousepadEffect(Color color)
Parameters
Type | Name | Description |
---|---|---|
Color | color | The color to set every LED to initially. |
CustomMousepadEffect(CustomMousepadEffect)
Initializes a new instance of the Custom
Declaration
public CustomMousepadEffect(CustomMousepadEffect other)
Parameters
Type | Name | Description |
---|---|---|
Custom |
other | The struct to copy data from. |
CustomMousepadEffect(IList<Color>)
Initializes a new instance of the Custom
Declaration
public CustomMousepadEffect(IList<Color> colors)
Parameters
Exceptions
Type | Condition |
---|---|
Argument |
Thrown if |
Argument |
Thrown if the colors list supplied is of an incorrect size. |
Properties
Item[Int32]
Gets or sets LEDs in the custom array.
Declaration
public Color this[int led] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | led | Index of the LED to access. |
Property Value
Methods
Clear()
Clears the colors in this Custom
Declaration
public void Clear()
Clone()
Returns a copy of this struct.
Declaration
public CustomMousepadEffect Clone()
Returns
Type | Description |
---|---|
Custom |
A copy of this struct. |
Create()
Create a new empty Custom
Declaration
public static CustomMousepadEffect Create()
Returns
Type | Description |
---|---|
Custom |
An instance of Custom |
Equals(CustomMousepadEffect)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(CustomMousepadEffect other)
Parameters
Type | Name | Description |
---|---|---|
Custom |
other | An object to compare with this object. |
Returns
Type | Description |
---|---|
Boolean |
|
Equals(Object)
Indicates whether this instance and a specified object are equal.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | Another object to compare to. |
Returns
Type | Description |
---|---|
Boolean |
|
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | A 32-bit signed integer that is the hash code for this instance. |
Set(Color)
Sets all the LED indices to the specified Color.
Declaration
public void Set(Color color)
Parameters
Operators
Equality(CustomMousepadEffect, Object)
Compares an instance of Custom
Declaration
public static bool operator ==(CustomMousepadEffect left, object right)
Parameters
Type | Name | Description |
---|---|---|
Custom |
left | The left operand, an instance of Custom |
Object | right | The right operand, any type of object. |
Returns
Type | Description |
---|---|
Boolean |
|
Inequality(CustomMousepadEffect, Object)
Compares an instance of Custom
Declaration
public static bool operator !=(CustomMousepadEffect left, object right)
Parameters
Type | Name | Description |
---|---|---|
Custom |
left | The left operand, an instance of Custom |
Object | right | The right operand, any type of object. |
Returns
Type | Description |
---|---|
Boolean |
|