SplashScreen Constructor (Bitmap, String, Point, Brush, Font, Int32, Boolean) |
|
DataPA OpenAnalytics API Reference
Create and returns a new SplashScreen object.
Namespace: DataPAClientConfigAssembly: DataPAClientConfig (in DataPAClientConfig.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax public SplashScreen(
Bitmap Bitmap,
string Text,
Point TextPosition,
Brush TextColor,
Font Font,
int Opacity,
bool HideOnClick
)
Public Sub New (
Bitmap As Bitmap,
Text As String,
TextPosition As Point,
TextColor As Brush,
Font As Font,
Opacity As Integer,
HideOnClick As Boolean
)
public:
SplashScreen(
Bitmap^ Bitmap,
String^ Text,
Point TextPosition,
Brush^ TextColor,
Font^ Font,
int Opacity,
bool HideOnClick
)
DataPAClientConfig.SplashScreen = function(Bitmap, Text, TextPosition, TextColor, Font, Opacity, HideOnClick);
Parameters
- Bitmap
- Type: System.DrawingBitmap
The bitmap image that will be used to display the splash screen. - Text
- Type: SystemString
Text that will be superimposed on the splash screen. - TextPosition
- Type: System.DrawingPoint
The position of the text relative to the top left corner of the image. - TextColor
- Type: System.DrawingBrush
The colour of the text to be superimposed on the splash screen. - Font
- Type: System.DrawingFont
The font to be used to superimpose the text on the splash screen. - Opacity
- Type: SystemInt32
The opacity of the splash screen. - HideOnClick
- Type: SystemBoolean
A boolean value that determines if the screen will be hidden on a mouse click.
Remarks See Also