Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6997 amit.gupta 1
values = []
2
 
3
childExpSlides = expSlide.getExpandedChildrenSlides()
4
if(childExpSlides):
5
    for childExpSlide in childExpSlides :
6
        if childExpSlide.getSlideDefinitionID() == 130096:
7
           expFeature = childExpSlide.getExpandedFeature(120005)
8
           if(expFeature):
9
               expBullets = expFeature.getExpandedBullets()
10
               if expBullets is not None:
11
                   for expBullet in expBullets:
12
                       screen_size = float(expBullet.getValue())
13
                       values.append(('%.12g' % screen_size) + " Inch")       
14
           break