Aurigma Image Uploader 6.5 Dual
ImageUploader.SplitterLineStyle Property
Style of splitter line.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("SplitterLineStyle", "Invisible"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setSplitterLineStyle(value);
value = getImageUploader("ImageUploaderID").getSplitterLineStyle();Property Value
A member of the following enumeration that specifies a splitter line style:
| String value | Integer value | Description |
|---|---|---|
| Invisible | 0 | No grid visible. |
| Solid | 1 | Grid is drawn with a solid line. |
| Dash | 2 | Grid is drawn with a dashed line. |
| Dot | 3 | Grid is drawn with a dotted line. |
| DashDot | 4 | Grid is drawn with dash-dotted line. |
| DashDotDot | 5 | Grid is drawn with dash-dot-dotted line. |
If unsupported string value is passed, it is interpreted as Invisible.
Default value is "Invisible".