Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8938 amit.gupta 1
values = []
2
 
3
expFeatures = expSlide.getExpandedFeatures()
4
if expFeatures is not None:
5
    for expFeature in expFeatures:
6
        print expFeature.getFeatureDefinition().getID()
7
        if expFeature.getFeatureDefinition().getID() == 120513:
8
            expBullets = expFeature.getExpandedBullets()
9
            if expBullets is not None:
10
                for expBullet in expBullets:
11
                    print str(expBullet.getValue())
12
                    values.append(str(expBullet.getValue()))