Skip to content

DetachedWindow

Summary

Used to represent the properties of a detached window.

Signature

1
public abstract interface DetachedWindow

Namespace

cAlgo.API

Properties

Left

Summary

Get / Set window left margin (X)

Signature

1
public abstract double Left {get; set;}

Return Value

double

Top

Summary

Get / Set window top margin (Y)

Signature

1
public abstract double Top {get; set;}

Return Value

double

Width

Summary

Get / Set width of the window

Signature

1
public abstract double Width {get; set;}

Return Value

double

Height

Summary

Get / Set height of the Window

Signature

1
public abstract double Height {get; set;}

Return Value

double

MinHeight

Summary

Get / Set the window minimum height

Signature

1
public abstract double MinHeight {get; set;}

Return Value

double

MaxHeight

Summary

Get / Set the window maximum height

Signature

1
public abstract double MaxHeight {get; set;}

Return Value

double

MinWidth

Summary

Get / Set the window minimum width

Signature

1
public abstract double MinWidth {get; set;}

Return Value

double

MaxWidth

Summary

Get / Set the window maximum width

Signature

1
public abstract double MaxWidth {get; set;}

Return Value

double

ResizeMode

Summary

Get / Set the window resize mode

Signature

1
public abstract ResizeMode ResizeMode {get; set;}

Return Value

ResizeMode

Related Tutorials

WindowStartupLocation

Summary

Get / Set the window startup location

Signature

1
public abstract WindowStartupLocation WindowStartupLocation {get; set;}

Return Value

WindowStartupLocation

Related Tutorials