Share via


VideoMode Constructors

Definition

Overloads

VideoMode(Int32, Int32, Int32, Boolean)
Obsolete.

Creates an instance of the VideoMode structure from parameters specifying the instance's constituent parts.

VideoMode(Int32, Int32, Int32, Int32, Boolean)

Creates an instance of the VideoMode structure from parameters specifying the instance's constituent parts.

VideoMode(Int32, Int32, Int32, Boolean)

Caution

Please use VideoMode(int modeId, int rows, int columns, int colors, bool isColor) instead.

Creates an instance of the VideoMode structure from parameters specifying the instance's constituent parts.

[System.Obsolete("Please use VideoMode(int modeId, int rows, int columns, int colors, bool isColor) instead.", true)]
public VideoMode (int rows, int columns, int colors, bool isColor);
[<System.Obsolete("Please use VideoMode(int modeId, int rows, int columns, int colors, bool isColor) instead.", true)>]
new Microsoft.PointOfService.VideoMode : int * int * int * bool -> Microsoft.PointOfService.VideoMode
Public Sub New (rows As Integer, columns As Integer, colors As Integer, isColor As Boolean)

Parameters

rows
Int32

Number of rows.

columns
Int32

Number of columns.

colors
Int32

Number of colors.

isColor
Boolean

true if video is color; otherwise, false.

Attributes

Applies to

VideoMode(Int32, Int32, Int32, Int32, Boolean)

Creates an instance of the VideoMode structure from parameters specifying the instance's constituent parts.

public VideoMode (int modeId, int rows, int columns, int colors, bool isColor);
new Microsoft.PointOfService.VideoMode : int * int * int * int * bool -> Microsoft.PointOfService.VideoMode
Public Sub New (modeId As Integer, rows As Integer, columns As Integer, colors As Integer, isColor As Boolean)

Parameters

modeId
Int32
rows
Int32

The number of rows.

columns
Int32

The number of columns.

colors
Int32

The number of colors

isColor
Boolean

true if video is color; otherwise, false.

Applies to