ScrollableControl

Wisej.Web.ScrollableControl

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Defines a base class for controls that support auto-scrolling behavior.

public class ScrollableControl : Control

Constructors

Initializes a new instance of the ScrollableControl class.

Properties

Boolean: Returns or sets whether the container enables the user to scroll to any controls placed outside of its visible boundaries. (Default: False)

Size: Returns or sets the size of the auto-scroll margin. (Default: {Width=0, Height=0})

Throws:

Size: Returns or sets the minimum size of the auto-scroll. (Default: {Width=0, Height=0})

Rectangle: Returns the rectangle that represents the virtual display area of the control.

HScrollProperties: Returns the properties associated with the horizontal scroll bar.

ScrollBars: Returns or sets the type of scroll bars to display for the ScrollableControl control. (Default: Both)

VScrollProperties: Returns the properties associated with the vertical scroll bar.

Methods

Computes the location of the specified screen point into client coordinates.

ParameterTypeDescription

point

The screen coordinate Point to convert.

Returns: Point. A Point that represents the converted Point, point , in client coordinates.

Computes the location of the specified client point into screen coordinates.

ParameterTypeDescription

point

The client coordinate Point to convert.

Returns: Point. A Point that represents the converted Point, point , in screen coordinates.

Scrolls the specified child control into view.

ParameterTypeDescription

control

The child control to scroll into view.

Scrolls the specified child control into view. using the specified alignX and alignY preferences.

ParameterTypeDescription

control

The child control to scroll into view.

alignX

Indicates the HorizontalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Center will not scroll the control to the center, but will instead scroll it into the closest visible location with the minimum movement.

alignY

Indicates the VerticalAlignment preference. The final location of the control depends on the scrollable range and the available space. Note that Middle will not scroll the control to the middle, but will instead scroll it into the closest visible location with the minimum movement.

Events

ScrollEventHandler Fired when the user or code scrolls through the client area.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Inherited By

NameDescription

Represents a panel that dynamically lays out its contents in a grid composed of rows and columns.

UI implementation for the FileDialog class.

UI implementation for the FolderDialog class.

Represents the navigation and manipulation user interface (UI) for controls that are bound to a data source.

Provides focus-management functionality for controls that can function as a container for other controls.

Represents a panel that dynamically arranges its controls horizontally or vertically in automatic rows or columns.

Represents a window or dialog box that makes up an application's user interface.

Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active main page at any given time.

Represents a collapsible panel with an optional header that contains a group of controls.

Represents a control consisting of a movable bar that divides a container's display area into two resizable panels.

Creates a panel that is associated with a SplitContainer.

Represents a single tab page in a TabControl.

Provides an empty control that can be used to create other controls.

Displays data in a customizable list format.

Used by the DataRepeater control to display data at run time.

Represents a desktop container that can host floating windows.

Represents a panel in a Accordion control.

Represents a panel that dynamically arranges its child controls.

Provides an popup container that can be attached to other controls.

Implements

NameDescription

Bindable components implement this interface.

Controls that support drag & drop operations implement this interface.

All wisej components implement this interface.

All wisej controls derived from the Control class must implement this interface.

Allows an object to serialize itself.

Last updated