Ellipse
Property |
Description |
BorderColor |
Color of the Ellipse stroke. |
BorderThickness |
Stroke thickness |
Fill |
Ellipse Color |
View Example
{
"$type":"Ellipse",
"Name":"Ellipse1",
"Height":100,
"Width":200,
"X":"20",
"Y":"20",
"BorderColor":"#000000",
"BorderThickness":5,
"Fill": "#C0C0C0"
}
Python Example
from Omniview.Python import *
myEllipse = Ellipse(50,80)
myEllipse.X = 10
myEllipse.Y = 70
myEllipse.Fill = Color("#FFC000")
myEllipse.BorderColor = Color("#FFB000")
myEllipse.BorderThickness = 3
Omniview.Windows[0].Content.AddViewObject(myEllipse)
See Also
Views
View Object Overview