Edit

Share via


Pcd8544.Write Method

Definition

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

Implements

Applies to