Interface
IRadWindow

Definition

Namespace:Telerik.WebAii.Controls.Xaml

Assembly:Telerik.WebAii.Controls.Xaml.dll

Syntax:

cs-api-definition
public interface IRadWindow : IContentControl, IControl, IFrameworkElement, ITargetElement

Derived Classes: RadWindowAppointmentItemDialogSchedulerWindowRadKeyboardWindowRadWindowSchedulerWindow

Inherited Members IControl.IsEnabledIFrameworkElement.CastAs<T>()IFrameworkElement.Parent<T>()IFrameworkElement.SetProxy(bool)IFrameworkElement.SetUid(string)IFrameworkElement.SetFindInfo(VisualFindInfo)IFrameworkElement.SetXamlTag(string)IFrameworkElement.AssignReference(AutomationReference)IFrameworkElement.SetFocus()IFrameworkElement.GetAutomationProperty(string)IFrameworkElement.GetProperty<T>(string)IFrameworkElement.GetPropertyTypeSafe(string)IFrameworkElement.SetProperty(string, object)IFrameworkElement.ScrollToVisible()IFrameworkElement.UserIFrameworkElement.FindIFrameworkElement.WaitIFrameworkElement.NameIFrameworkElement.AbsoluteSiblingTagIndexIFrameworkElement.ActualWidthIFrameworkElement.ActualHeightIFrameworkElement.TextIFrameworkElement.ToolTipTextIFrameworkElement.TextBlockContentIFrameworkElement.TextLiteralContentIFrameworkElement.ComputedVisibilityIFrameworkElement.UidITargetElement.Match(IFindExpression)ITargetElement.SetDepth(int)ITargetElement.AddChildNode(ITargetElement)ITargetElement.SetClosingTag(ITargetElement)ITargetElement.GetChildren()ITargetElement.GetParent()ITargetElement.GetHostParent()ITargetElement.SetParent(ITargetElement)ITargetElement.Refresh()ITargetElement.GetUniqueHashCode()ITargetElement.GetRectangle()ITargetElement.Capture()ITargetElement.CaptureImage()ITargetElement.GetStringPresentation()ITargetElement.TechnologyTypeITargetElement.DepthITargetElement.IsTestRegionITargetElement.ParsedElementITargetElement.Host

Properties

CanClose

Gets a value indicating whether the current RadWindow can be closed.

Declaration

cs-api-definition
bool CanClose { get; }

Property Value

bool

CanMove

Gets a value indicating whether the current RadWindow can be moved.

Declaration

cs-api-definition
bool CanMove { get; }

Property Value

bool

IsActiveWindow

Gets a value indicating whether this instance is active.

Declaration

cs-api-definition
bool IsActiveWindow { get; }

Property Value

bool

IsMaximized

Gets a value that represents whether the RadWindow is maximized.

Declaration

cs-api-definition
bool IsMaximized { get; }

Property Value

bool

IsMinimized

Gets a value that represents whether the RadWindow is minimized.

Declaration

cs-api-definition
bool IsMinimized { get; }

Property Value

bool

IsModal

Gets a value that represents whether the RadWindow is modal.

Declaration

cs-api-definition
bool IsModal { get; }

Property Value

bool

IsOpen

Gets a value representing the current RadWindow open state.

Declaration

cs-api-definition
bool IsOpen { get; }

Property Value

bool

Left

Gets or sets a value that represents the distance between the left side of an element and the left side of the page.

Declaration

cs-api-definition
double Left { get; }

Property Value

double

LeftOffset

Gets or sets a value that represents the distance between the left of an element when centered and the offset from this value.

Declaration

cs-api-definition
double LeftOffset { get; }

Property Value

double

RestoreMinimizedLocation

Gets the value determining whether the window preserves its size and location when the state is changed.

Declaration

cs-api-definition
bool RestoreMinimizedLocation { get; }

Property Value

bool

Title

Get the title of the window.

Declaration

cs-api-definition
string Title { get; }

Property Value

string

Top

Gets or sets a value that represents the distance between the top of an element and the top of the page.

Declaration

cs-api-definition
double Top { get; }

Property Value

double

TopOffset

Gets or sets a value that represents the distance between the top of an element when centered and the offset from this value.

Declaration

cs-api-definition
double TopOffset { get; }

Property Value

double

Methods

Close()

Closes the window by a 'Close' button Click action.

Declaration

cs-api-definition
void Close()

Maximize()

Maximizes the window by a 'Maximize' button Click action.

Declaration

cs-api-definition
void Maximize()

Minimize()

Minimizes the window by a 'Minimize' button Click action.

Declaration

cs-api-definition
void Minimize()

MoveBy(int, int)

Moves the window dragging its header thumb by the given pixels on X and Y coordinates.

Declaration

cs-api-definition
void MoveBy(int offsetByX, int offsetByY)

Parameters

offsetByX

int

By 'X' pixels left or right.

offsetByY

int

By 'Y' pixels up or down.

Resize(OffsetReference, int, int)

Resize the window from a given pont with specified offset.

Declaration

cs-api-definition
void Resize(OffsetReference startPoint, int offsetByX, int offsetByY)

Parameters

startPoint

OffsetReference

The start point from which the resizing starts.

offsetByX

int

The offset of resizing by X.

offsetByY

int

The offset of resizing by Y.

ResizeDown(int)

Resizes (Down) the window with given pixels.

Declaration

cs-api-definition
void ResizeDown(int offsetByY)

Parameters

offsetByY

int

The pixels to add on down resizing.

ResizeDownLeft(int, int)

Resizes to down/left the window with given pixels.

Declaration

cs-api-definition
void ResizeDownLeft(int offsetByX, int offsetByY)

Parameters

offsetByX

int

The pixels to add on left resizing.

offsetByY

int

The pixels to add on down resizing.

ResizeDownRight(int, int)

Resizes to down/right the window with given pixels.

Declaration

cs-api-definition
void ResizeDownRight(int offsetByX, int offsetByY)

Parameters

offsetByX

int

The pixels to add on right resizing.

offsetByY

int

The pixels to add on down resizing.

ResizeLeft(int)

Resizes (Left) the window with given pixels.

Declaration

cs-api-definition
void ResizeLeft(int offsetByX)

Parameters

offsetByX

int

The pixels to add on left resizing.

ResizeRight(int)

Resizes (Right) the window with given pixels.

Declaration

cs-api-definition
void ResizeRight(int offsetByX)

Parameters

offsetByX

int

The pixels to add on right resizing.

ResizeUp(int)

Resizes (UP) the window with given pixels.

Declaration

cs-api-definition
void ResizeUp(int offsetByY)

Parameters

offsetByY

int

The pixels to add on up resizing.

ResizeUpLeft(int, int)

Resizes to up/left the window with given pixels.

Declaration

cs-api-definition
void ResizeUpLeft(int offsetByX, int offsetByY)

Parameters

offsetByX

int

The pixels to add on left resizing.

offsetByY

int

The pixels to add on up resizing.

ResizeUpRight(int, int)

Resizes to up/right the window with given pixels.

Declaration

cs-api-definition
void ResizeUpRight(int offsetByX, int offsetByY)

Parameters

offsetByX

int

The pixels to add on right resizing.

offsetByY

int

The pixels to add on up resizing.

Restore()

Restores the state (from maximized/minimized to normal) of the window by Click action on the respective button.

Declaration

cs-api-definition
void Restore()