Skip to main content
A newer version of this page is available. .

SplashScreenManager.ShowImage(SvgImage, Boolean, Boolean, SplashFormStartPosition, Point) Method

Displays a splash form that contains a vector image. Allows you to manually arrange this splash form.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public static void ShowImage(
    SvgImage svgImage,
    bool useFadeIn,
    bool useFadeOut,
    SplashFormStartPosition startPos,
    Point location
)

Parameters

Name Type Description
svgImage SvgImage

An SvgImage to be drawn.

useFadeIn Boolean

true, to use the fade-in effect when the image appears on-screen; otherwise, false.

useFadeOut Boolean

true, to use the fade-out effect when the image hides; otherwise, false. Use the SplashScreenManager.HideImage method to hide a splash form image.

startPos SplashFormStartPosition

The splash form’s arrangement.

location Point

Coordinates at which the splash form is shown (if the startPos parameter is set to Manual).

Remarks

Call the SplashScreenManager.HideImage method to show the splash form.

See Also