Share via


LineDisplayBase.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 override void DisplayTextAt (int row, int column, string data);
override this.DisplayTextAt : int * int * string -> unit
Public Overrides 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 override void DisplayTextAt (int row, int column, string data, Microsoft.PointOfService.DisplayTextMode attribute);
override this.DisplayTextAt : int * int * string * Microsoft.PointOfService.DisplayTextMode -> unit
Public Overrides 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 DisplayTextMode.Normal or DisplayTextMode.Blink.

Applies to