Pcd8544.Write Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Write(ReadOnlySpan<Char>) |
Write a raw byte stream to the display. Used if character translation already took place. |
Write(String) |
Write text |
Write(Char[]) |
Write a raw byte stream to the display. Used if character translation already took place. |
Write(ReadOnlySpan<Char>)
Write a raw byte stream to the display. Used if character translation already took place.
public void Write (ReadOnlySpan<char> text);
abstract member Write : ReadOnlySpan<char> -> unit
override this.Write : ReadOnlySpan<char> -> unit
Public Sub Write (text As ReadOnlySpan(Of Char))
Parameters
- text
- ReadOnlySpan<Char>
Text to print
Implements
Applies to
Write(String)
Write text
public void Write (string text);
abstract member Write : string -> unit
override this.Write : string -> unit
Public Sub Write (text As String)
Parameters
- text
- String
The text to write
Implements
Applies to
Write(Char[])
Write a raw byte stream to the display. Used if character translation already took place.
public void Write (char[] text);
abstract member Write : char[] -> unit
override this.Write : char[] -> unit
Public Sub Write (text As Char())
Parameters
- text
- Char[]
Text to print