DataPA Enterprise Dashboard Controls API Reference
Create and returns a new SplashScreen object.

Namespace: DataPAClientConfig
Assembly: DataPAClientConfig (in DataPAClientConfig.dll) Version: 1.0.1.0 (1.0.1.0)

Syntax

C#
public SplashScreen(
	Bitmap Bitmap,
	string Text,
	Point TextPosition,
	Brush TextColor,
	Font Font,
	int Opacity,
	bool HideOnClick
)
Visual Basic
Public Sub New ( 
	Bitmap As Bitmap,
	Text As String,
	TextPosition As Point,
	TextColor As Brush,
	Font As Font,
	Opacity As Integer,
	HideOnClick As Boolean
)
Visual C++
public:
SplashScreen(
	Bitmap^ Bitmap, 
	String^ Text, 
	Point TextPosition, 
	Brush^ TextColor, 
	Font^ Font, 
	int Opacity, 
	bool HideOnClick
)

Parameters

Bitmap
Type: System.Drawing..::..Bitmap
The bitmap image that will be used to display the splash screen.
Text
Type: System..::..String
Text that will be superimposed on the splash screen.
TextPosition
Type: System.Drawing..::..Point
The position of the text relative to the top left corner of the image.
TextColor
Type: System.Drawing..::..Brush
The colour of the text to be superimposed on the splash screen.
Font
Type: System.Drawing..::..Font
The font to be used to superimpose the text on the splash screen.
Opacity
Type: System..::..Int32
The opacity of the splash screen.
HideOnClick
Type: System..::..Boolean
A boolean value that determines if the screen will be hidden on a mouse click.

Remarks