Style of splitter line.
<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>
getImageUploader("ImageUploaderID").setSplitterLineStyle(value);
value = getImageUploader("ImageUploaderID").getSplitterLineStyle();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.
When you get this property value through the JavaScript, integer value will be returned (even if you initialize the property with a string value).
Default value is "Invisible".