Server Name |
JavaScript Syntax : Return value |
Description |
ClientID |
ID() : string |
Gets the server control identifier generated by ASP.NET. |
N/A |
Form() : object |
Gets the form object that the Web server control is on. |
AllowMultiSelect |
getAllowMultiSelect() : bool
|
Gets a value that allows multiple thumbs to be selected using the shift or
ctrl keys. |
AllowDragDrop |
getAllowDragDrop() : bool
|
Gets a value that allows thumbnails to be dragged and dropped inside the
bounds of the control. |
AutoDragDrop |
getAutoDragDrop() : bool
|
Gets a value that determines whether thumbnail reordering will be
automatically handled on the client-side. |
BackColor |
getBackColor() :
string
setBackColor(value:
string) |
Gets or sets the background color of the Web server control.
Expected
input: string representing a hex value or exact color name:
'#ACFF00' |
BorderColor |
getBorderColor() :
string
setBorderColor(value:
string) |
Gets or sets the inner border color of the Web server
control.
Expected input: string representing a hex value
or exact color name: '#ACFF00' |
BorderStyle |
getBorderStyle() :
string
setBorderStyle(value:
string) |
Gets or sets the outer border style used for this Web server
control.
Expected input: string representing CSS Style:
'1px solid #FF9900' |
BorderWidth |
getBorderWidth() :
int
setBorderWidth(value:
int) |
Gets or sets the inner border width of the Web server
control.
Expected input: int representing the number of
pixels wide. |
BrowserFormat |
getBrowserFormat : int |
Gets the format of the images created for browser output.
Returns an
int: 0:Jpeg 1:Png 2:Gif 3:Auto |
CachePath |
getCachePath() : string |
Gets the file path used for the file cache as specified in the Web.config
file. |
Caption |
getCaption() :
string
setCaption(value:
string) |
Gets or sets a string used for creating a caption under the
Web server control. HTML syntax is allowed.
Note: This property is tied to a hidden input tag, so
changing this value to HTML in JavaScript could cause problems if the page needs
to PostBack. |
Centered |
getCentered() :
bool
setCentered(value:
bool) |
Gets or sets a value indicating if the image is centered when the image is
smaller than the Web server control. |
Columns |
getColumns() : int
setColumns(value:
int) |
Gets or sets the number of columns (0 means auto) |
N/A |
ClearThumbs() |
Clears all currently loaded thumbnails. |
Columns |
getColumns() : int
setColumns(value:
int) |
Gets or sets the number of columns (0 means auto) |
Count |
getCount() : int |
Gets the number of thumbnails. |
FlowDirection |
getFlowDirection() : int |
Gets the FlowDirection enumeration for how the thumbnails are laid
out. |
Font |
getFont() :
string
setFont(value:
string) |
Gets or sets the font name associated with the Web server
control.
Expected input: string representing font name:
'verdana' |
ForeColor |
getForeColor() :
string
setForeColor(value:
string) |
Gets or sets the foreground color (typically the color of the text) of the
Web server control.
Expected input: string representing
a hex value or exact color name: '#ACFF00' |
Height |
getHeight() :
int
setHeight(value:
int) |
Gets or sets the height of the Web server control in pixels. |
ImageDisplayOrder |
getImageDisplayOrder() : int |
Gets the order that thumbs are loaded. |
Layout |
getLayout() : int |
Gets the Layout set on the server. |
MouseTool |
getMouseToolLeft() :
int
getMouseToolRight() :
int
setMouseTool(left:
int, right: int) |
Gets or sets the behavior of the mouse when interacting with the
viewable area.
Expected input: MouseToolType
or int from 0-7, 0:None 1:Center 2:Selection 3:ZoomIn 4:ZoomOut
5:ZoomArea 6:Pan 7:PassThrough |
MouseTool.Cursor |
getMouseToolCursor() :
int
setMouseToolCursor(value :
int) |
Gets or sets the cursor used with the mouse
tool.
Expected input: MouseToolCursor
or int from 0-8, 0:Auto 1:Arrow 2:Crosshair 3:Grab 4:Hand
5:Move 6:ZoomIn 7:ZoomOut 8:Custom
Note:
Currently, Grab is a CSS Extension supported by Mozilla based browsers
only. |
MouseTool.CustomCursor |
getMouseToolCustomCursor() :
string
setMouseToolCustomCursor(value :
string) |
Gets or sets a value that represents the custom
CSS style used for the MouseTool.
Expected input: string
representing Style: 'wait' or 'url(MyCursor.cur)'
Note: Url based CSS cursor styles may not work in all
browsers. |
PathToResources |
getPathToResources() : string |
Gets the virtual path to where the image, script, and cursor files are
located. |
Rows |
getRows() : int
setRows(value:
int) |
Gets or sets the number of rows (0 means auto) |
ScrollBarVisibility |
getScrollBarVisibility() :
int
setScrollBarVisibility(value :
int) |
Gets or sets the visibility of the scrollbars.
Expected input: ScrollBarVisibility
or int: 0:Dynamic 1:None 2:Always |
ScrollPosition |
getScrollPosition() : atalaPoint
setScrollPosition(value
: atalaPoint) |
Gets or sets the upper left image position in relation to the upper left
corner of the Web server control.
Expected input: atalaPoint |
SearchPattern |
getSearchPattern() :
string
setSearchPattern(value:
string) |
Gets or sets a semi-colon separated list of file search patterns for loading
images from a directory. |
SelectedIndex |
getSelectedIndex() : int |
Gets the index of the selected thumbnail. If AllowMultiSelect is true, it
has the index of the most recently selected thumb. |
SelectedIndexes |
getSelectedIndexes(): Array |
Gets an array of integers which are the indexes selected in the thumbnail
control. If AllowMultiSelect is false, this array will have an length of 1, and
contain the same index as SeletedIndex. If AllowMultiSelect is true, it will
have a list of all of the selected thumbs in the order they were
selected. |
N/A |
getThumbCaption(value: int) :
string |
Gets the caption for the thumbnail at the specified index. |
ThumbCaptionFormat |
getThumbCaptionFormat() : string |
Gets the caption format specified on the server side. |
N/A |
getThumbOrder() : Array |
Gets an array of integers which correspond to the thumbnails in the
thumbnail control. As DragDrop events occur, this array will reorder itself to
correspond to the positions of the thumbnails in the control.
Note: This function is only meant to be called when
AutoDragDrop is enabled. If the value is set to false, this function will throw
an exception. |
ThumbPadding |
getThumbPadding() : int |
Gets the number of pixels around each thumbnail. |
ThumbSize |
getThumbSize() : atalaSize |
Gets the size of each thumbnail. |
ThumbSpacing |
getThumbSpacing() : int |
Gets the number of pixels between thumbs. |
TitleBar |
getTitleBar() :
string
setTitleBar(value:
string) |
Gets or sets a string used for a creating a title bar above the Web server
control. HTML syntax is allowed.
Note:
This property is tied to a hidden input tag, so changing this value to HTML in
JavaScript could cause problems if the page needs to PostBack. |
Url |
getUrl() : string |
Gets the URL representing the current image. |
ViewerID |
getViewerID() : string |
Gets the ID of the WebImageViewer associated with this control. |
ViewPortSize |
getViewPortSize() : atalaSize |
Gets the size of the viewable area, excluding scroll bars. |
Visibility |
getVisibility() :
string
setVisibility(value:
string) |
Gets or sets a value that indicates whether the Web server control is hidden
or visible on the page.
Expected input: string that is
either 'hidden', 'visible', or 'inherit'.
Note: 'inherit' will return VisibilityStyle.Visible
on the server side. |
Width |
getWidth() :
int
setWidth(value:
int) |
Gets or sets the CSS width style property of the server
control.
Expected input: string representing style
width: '200px' |
Zoom |
getZoom() :
float
setZoom(value :
float) |
Gets or sets the zoom level of the thumbnails in relation to
their original size, for this Web server control. |