Share via


LineDisplay.DisplayTextAt Method

Definition

Overloads

DisplayTextAt(Int32, Int32, String)

Displays the string of characters at the specified row and column.

DisplayTextAt(Int32, Int32, String, DisplayTextMode)

Displays the string of characters at the specified row and column, in the specified display mode.

DisplayTextAt(Int32, Int32, String)

Displays the string of characters at the specified row and column.

public abstract void DisplayTextAt (int row, int column, string data);
abstract member DisplayTextAt : int * int * string -> unit
Public MustOverride Sub DisplayTextAt (row As Integer, column As Integer, data As String)

Parameters

row
Int32

The start row for the text.

column
Int32

The start column for the text.

data
String

The string of characters to display.

Applies to

DisplayTextAt(Int32, Int32, String, DisplayTextMode)

Displays the string of characters at the specified row and column, in the specified display mode.

public abstract void DisplayTextAt (int row, int column, string data, Microsoft.PointOfService.DisplayTextMode attribute);
abstract member DisplayTextAt : int * int * string * Microsoft.PointOfService.DisplayTextMode -> unit
Public MustOverride Sub DisplayTextAt (row As Integer, column As Integer, data As String, attribute As DisplayTextMode)

Parameters

row
Int32

The start row for the text.

column
Int32

The start column for the text.

data
String

The string of characters to display.

attribute
DisplayTextMode

The display attribute for the text. Possible values are defined by the DisplayTextMode enumeration. Must be either Normal or Blink.

Applies to