Aurigma Image Uploader 6.5 Dual
ImageUploader.PaneItemDesign Property
Settings for thumbnail item appearance.
Syntax
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setPaneItemDesign(Pane, Index, value);
value = getImageUploader("ImageUploaderID").getPaneItemDesign(Pane, Index);Parameters
- Pane
-
A member of the following enumeration:
String value Integer value Description FolderPane 0 A folder pane (which displays the current folder content).
UploadPane 1 An upload pane (which displays files from the upload list).
- Index
-
A non-negative integer that specifies an index of a thumbnail item on a pane (one-based). It should not exceed PaneItemCount - 1 for the specified pane.
Property Value
A string that specifies the item appearance. See the Remarks section for more details on the string format.
Remarks
The string that contains the appearance settings has the following syntax:
param1=value1;param2=value2;...
Below is the list of supported parameters:
| Parameter | Description | |||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BackgroundColor | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the background color of the thumbnail item. | |||||||||||||||||||||
| ForegroundColor | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the foreground color of the thumbnail item. This color fills item with the specified opacity. | |||||||||||||||||||||
| ForegroundOpacity | An integer value that specifies the opacity of the foreground color. By default, 0 (completely transparent). | |||||||||||||||||||||
| BorderLineColorLeft | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the color of the left item border. | |||||||||||||||||||||
| BorderLineColorRight | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the color of the right item border. | |||||||||||||||||||||
| BorderLineColorTop | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the color of the top item border. | |||||||||||||||||||||
| BorderLineColorBottom | A color value specified as a hex representation of the RGB triad in HTML-style syntax (#rrggbb) or as a color name ("white" and so on) . This value specifies the color of the bottom item border. | |||||||||||||||||||||
| BorderLineStyleLeft | A member of the following enumeration that specifies the style of the left item border:
If unsupported string value is passed, it is interpreted as Invisible. | |||||||||||||||||||||
| BorderLineStyleRight | A member of the following enumeration that specifies the style of the right item border:
If unsupported string value is passed, it is interpreted as Invisible. | |||||||||||||||||||||
| BorderLineStyleTop | A member of the following enumeration that specifies the style of the top item border:
If unsupported string value is passed, it is interpreted as Invisible. | |||||||||||||||||||||
| BorderLineStyleBottom | A member of the following enumeration that specifies the style of the bottom item border:
If unsupported string value is passed, it is interpreted as Invisible. |