Displaying 1 result from an estimated 1 matches for "veshapetyp".
Did you mean:
veshapetype
2009 Feb 02
0
Polyline toMicrosoft() change
...r;
var opacity = this.opacity ||1.0;
if(this.color){
color = new
VEColor(parseInt(this.color.substr(1,2),16),parseInt(this.color.substr(3,2),16),parseInt(this.color.substr(5,2),16),
opacity);
}else{
color = new VEColor(0,255,0, opacity);
}
mpolyline = new VEShape(VEShapeType.Polygon, mpoints);
mpolyline.SetLineColor(color);
mpolyline.SetLineWidth(this.width || 1);
mpolyline.HideIcon();
if(this.fillColor){
var fillColor = new
VEColor(parseInt(this.fillColor.substr(1,2),16),parseInt(this.fillColor.substr(3,2),16),parseInt(this.fillColor.substr(5,...