SetPenWidth
SetPenWidth 设置手写批注的线宽。
语法:
document.getElementById("PageOfficeCtrl1").HandDraw.SetPenWidth( Width );
参数 | 描述 |
---|---|
Width | 线的宽度,值需为大于0小于10的整数。 |
[!note]
设置手写批注的线宽。
示例:
<SCRIPT type ="text/javascript">
function SetPenWidth(){
//将手写批注的线宽设置为5
document.getElementById("PageOfficeCtrl1").HandDraw.SetPenWidth(5);
}
</SCRIPT>
>