Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 6997 |
amit.gupta |
1 |
values = []
|
|
|
2 |
|
|
|
3 |
expFeature = expSlide.getExpandedFeature(120005)
|
|
|
4 |
if(expFeature):
|
|
|
5 |
expBullets = expFeature.getExpandedBullets()
|
|
|
6 |
if expBullets is not None:
|
|
|
7 |
for expBullet in expBullets:
|
|
|
8 |
screen_size = float(expBullet.getValue())
|
|
|
9 |
values.append(('%.12g' % screen_size) + " Inch")
|