Skip to main content
All docs
V20.1

OverlayWindowOptions(Nullable<Boolean>, Nullable<Boolean>, Nullable<Color>, Nullable<Color>, Nullable<Double>, Image, IOverlayWindowPainter, String, Nullable<ImageRotationParams>, Nullable<Int32>, Nullable<Size>, Nullable<WaitAnimationType>, Nullable<LineAnimationParams>, Nullable<Boolean>) Constructor

Initializes a new instance of the OverlayWindowOptions class with specified settings.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v20.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public OverlayWindowOptions(
    bool? fadeIn = default(bool? ),
    bool? fadeOut = default(bool? ),
    Color? backColor = default(Color? ),
    Color? foreColor = default(Color? ),
    double? opacity = default(double? ),
    Image image = null,
    IOverlayWindowPainter customPainter = null,
    string skinName = null,
    ImageRotationParams? rotationParameters = default(ImageRotationParams? ),
    int? startupDelay = default(int? ),
    Size? imageSize = default(Size? ),
    WaitAnimationType? animationType = default(WaitAnimationType? ),
    LineAnimationParams? lineAnimationParameters = default(LineAnimationParams? ),
    bool? disableInput = default(bool? )
)

Optional Parameters

Name Type Default
fadeIn Nullable<Boolean> *null*
fadeOut Nullable<Boolean> *null*
backColor Nullable<Color> *null*
foreColor Nullable<Color> *null*
opacity Nullable<Double> *null*
image Image *null*
customPainter DevExpress.XtraSplashScreen.IOverlayWindowPainter *null*
skinName String *null*
rotationParameters Nullable<ImageRotationParams> *null*
startupDelay Nullable<Int32> *null*
imageSize Nullable<Size> *null*
animationType Nullable<WaitAnimationType> *null*
lineAnimationParameters Nullable<LineAnimationParams> *null*
disableInput Nullable<Boolean> *null*
See Also