New to Telerik UI for WinFormsStart a free 30-day trial

Properties

Updated over 6 months ago
PropertyDescription
MouseWheelBehaviorGets or sets the way that RadPanorama should handle mouse wheel input.
AutoArrangeNewTilesGets or sets a value that indicates whether the newly added tiles should be automatically arranged.
EnableZoomingEnables or Disables the build in zoom functionality
MinimumColumnsGets or sets the minimum number of columns that the view can be reduced to.
AllowDragDropGets or sets a value indicating whether reordering of tiles via drag and drop is allowed.
ShowGroupsGets or sets a value indicating whether the groups or the items should be displayed.
ScrollingBackgroundGets or sets a value indicating whether the background image should be scrolled along with the tiles.
ScrollBarAlignmentGets or sets the position on which the scroll bar should be aligned.
ScrollBarThicknessGets or sets the thickness of the scroll bar.
MouseWheelScrollStepGets or sets the step size that is used, when scrolling with the mouse wheel. The default value is 30.
PanoramaElementGets the RadPanoramaElement that represents the main element of the control.
PanelImageGets or sets the image that is displayed in the background.
PanelImageSizeGets or sets the size of the image that is displayed in the background.
ColumnsCountGets or sets the current number of columns.
RowsCountGets or sets the number of rows.
CellSizeRadPanorama uses a GridLayout element to display its tiles. By setting the CellSize property, you can change the default size of a single cell which is also the default size of a tile.
ItemsGets a collection of RadTileElement objects that represent the tiles that are displayed.
GroupsGets a collection of RadTileElement objects that represent the tiles that are displayed.

RadPanoramaElement's Properties

PropertyDescription
ZoomedOutIndicates whether the view is zoomed out.
ScrollBarGets the scroll bar of the view.
TileLayoutGets the layout that arranges the tiles in ungrouped mode.
GroupLayoutGets the layout that arranges the tile groups.
DragDropServiceGets or sets the RadDragDropService that is responsible for the drag-drop reorder of tiles.
ScrollServiceGets the ScrollService that is responsible for kinetic scrolling behavior with the mouse pointer.

RadTileElement's Properties

PropertyDescription
ColumnGets the zero-based index of the column in which the tile should be arranged.
RowGets the zero-based index of the row in which the tile should be arranged.
RowSpanGets or sets the number of cells that the tile should occupy in a column.
ColSpanGets or sets the number of cells that the tile should occupy in a row.
CellPaddingGets or sets the padding according to the currently occupied cell.

RadPanorama uses dynamic number of columns, so you can set the Column property of a tile with a value, greater than the ColumnsCount value. However, setting the Row property with a value, greater than the RowsCount value, will result in an exception.

RadLiveTileElement's Properties

RadLiveTileElement is a derivative of RadTileElement. Hence, the listed properties above are relevant for the RadLiveTileElement as well.

PropertyDescription
ContentChangeIntervalGets or sets the interval at which the content of RadLiveTileElement changes.
EnableAnimationsGets or sets a value indicating whether the animations are enabled.
AnimationFramesGets or sets the number of frames of the transition animation.
AnimationIntervalGets or sets the interval between each frame of the transition animation.
ItemsGets a collection of RadElement objects that represent the content items of the RadLiveTileElement.
TransitionTypeGets or sets the type of the transition animation.
CurrentItemGets or sets the currently displayed item.

TileGroupElement's Properties

PropertyDescription
MinimumColumnsGets or sets the minimum number of columns that the view can be reduced to.
HeaderHeightGets or sets the height of the group title.
ItemsGets the items collection that belong to this group.
ContentElementGets the layout panel that arranges the tiles.
ColumnsCountGets or sets the current number of columns.
RowsCountGets or sets the number of rows.
CellSizeGets or sets the size of a single cell.

RadPanoramaElement's Methods

MethodDescription
ScrollView(int offset)Scrolls the view with a specified offset.
ScrollView(int offset, bool buffered)Scrolls the view with a specified offset. If the method is called too often, set the buffered to true to improve performance.
UpdateViewOnScrollUpdates the view according to the current value of the scroll bar.
ZoomOutZooms the view out.
ZoomInZooms the view in towards the specified location.
ScrollToItem(RadTileElement tile)Scrolls to the specified tile.
ScrollToItem(RadTileElement tile, int desiredOffset)Scrolls to the specified tile with the desired offset.

See Also