Class FourDigitSevenSegment
Four Digit Seven Segment Display
Assembly: FourDigitSevenSegment.dll
View Source
public class FourDigitSevenSegment : IDisposable
Implements:
System.IDisposable
Properties
IsDisposed
Is the object disposed
View Source
public bool IsDisposed { get; }
Methods
SetDisplay(string, int)
Displays the specified characters
View Source
public void SetDisplay(string characters, int decimalLocation = -1)
Parameters
Type | Name | Description |
---|---|---|
System.String | characters | The characters to display |
System.Int32 | decimalLocation | The decimal position (0 indexed) |
SetDisplay(char[], int)
Displays the specified characters
View Source
public void SetDisplay(char[] characters, int decimalLocation = -1)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | characters | The characters to display |
System.Int32 | decimalLocation | The decimal position (0 indexed) |
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
View Source
public void Dispose()
Dispose(bool)
Dispose of the object
View Source
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Is disposing |
Implements
System.IDisposable