Skip to content

WindowStartupLocation

Summary

Types of startup locations that you can use for windows

Signature

1
public enum WindowStartupLocation

Namespace

cAlgo.API

Fields

Manual

Summary

Default window startup location value.The startup location of a Window is set from code, or defers to the default Windows location.

Signature

1
public static WindowStartupLocation Manual;

Return Value

WindowStartupLocation

CenterScreen

Summary

Window is placed at the center of the screen.

Signature

1
public static WindowStartupLocation CenterScreen;

Return Value

WindowStartupLocation

CenterOwner

Summary

Window is placed at the center of it's owner.

Signature

1
public static WindowStartupLocation CenterOwner;

Return Value

WindowStartupLocation