com.aspose.slides.pptx.animation
Enum ConstsEx.PropertyTypeEx

java.lang.Object
  extended by java.lang.Enum<ConstsEx.PropertyTypeEx>
      extended by com.aspose.slides.pptx.animation.ConstsEx.PropertyTypeEx
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConstsEx.PropertyTypeEx>
Enclosing class:
ConstsEx

public static enum ConstsEx.PropertyTypeEx
extends java.lang.Enum<ConstsEx.PropertyTypeEx>

Represent property types for animation behavior.


Enum Constant Summary
Color
           
NotDefined
           
Opacity
           
PptHeight
           
PptWidth
           
PptX
           
PptY
           
Rotation
           
RotationPPT
           
ShapeFillBackColor
           
ShapeFillColor
           
ShapeFillColor2
           
ShapeFillOn
           
ShapeFillOpacity
           
ShapeFillType
           
ShapeLineColor
           
ShapeLineOn
           
ShapePictureBrightness
           
ShapePictureContrast
           
ShapePictureGamma
           
ShapePictureGrayscale
           
ShapeShadowColor
           
ShapeShadowOffsetX
           
ShapeShadowOffsetY
           
ShapeShadowOn
           
ShapeShadowOpacity
           
ShapeShadowType
           
ShapeStrokeColor
           
StrokeOn
           
TextBulletCharacter
           
TextBulletColor
           
TextBulletFontName
           
TextBulletNumber
           
TextBulletRelativeSize
           
TextBulletStyle
           
TextBulletType
           
TextFontBold
           
TextFontColor
           
TextFontEmboss
           
TextFontItalic
           
TextFontName
           
TextFontShadow
           
TextFontSize
           
TextFontStrikeThrough
           
TextFontStyle
           
TextFontSubscript
           
TextFontSuperscript
           
TextFontUnderline
           
TextFontWeight
           
Visibility
           
XShear
           
 
Method Summary
 int getId()
           
static ConstsEx.PropertyTypeEx valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConstsEx.PropertyTypeEx[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NotDefined

public static final ConstsEx.PropertyTypeEx NotDefined

Color

public static final ConstsEx.PropertyTypeEx Color

PptHeight

public static final ConstsEx.PropertyTypeEx PptHeight

Opacity

public static final ConstsEx.PropertyTypeEx Opacity

Rotation

public static final ConstsEx.PropertyTypeEx Rotation

RotationPPT

public static final ConstsEx.PropertyTypeEx RotationPPT

ShapeStrokeColor

public static final ConstsEx.PropertyTypeEx ShapeStrokeColor

StrokeOn

public static final ConstsEx.PropertyTypeEx StrokeOn

ShapeFillType

public static final ConstsEx.PropertyTypeEx ShapeFillType

ShapeFillBackColor

public static final ConstsEx.PropertyTypeEx ShapeFillBackColor

ShapeFillColor

public static final ConstsEx.PropertyTypeEx ShapeFillColor

ShapeFillColor2

public static final ConstsEx.PropertyTypeEx ShapeFillColor2

ShapeFillOn

public static final ConstsEx.PropertyTypeEx ShapeFillOn

ShapeFillOpacity

public static final ConstsEx.PropertyTypeEx ShapeFillOpacity

ShapeLineColor

public static final ConstsEx.PropertyTypeEx ShapeLineColor

ShapeLineOn

public static final ConstsEx.PropertyTypeEx ShapeLineOn

ShapePictureBrightness

public static final ConstsEx.PropertyTypeEx ShapePictureBrightness

ShapePictureContrast

public static final ConstsEx.PropertyTypeEx ShapePictureContrast

ShapePictureGamma

public static final ConstsEx.PropertyTypeEx ShapePictureGamma

ShapePictureGrayscale

public static final ConstsEx.PropertyTypeEx ShapePictureGrayscale

ShapeShadowColor

public static final ConstsEx.PropertyTypeEx ShapeShadowColor

ShapeShadowOffsetX

public static final ConstsEx.PropertyTypeEx ShapeShadowOffsetX

ShapeShadowOffsetY

public static final ConstsEx.PropertyTypeEx ShapeShadowOffsetY

ShapeShadowOn

public static final ConstsEx.PropertyTypeEx ShapeShadowOn

ShapeShadowOpacity

public static final ConstsEx.PropertyTypeEx ShapeShadowOpacity

ShapeShadowType

public static final ConstsEx.PropertyTypeEx ShapeShadowType

TextBulletCharacter

public static final ConstsEx.PropertyTypeEx TextBulletCharacter

TextBulletColor

public static final ConstsEx.PropertyTypeEx TextBulletColor

TextBulletFontName

public static final ConstsEx.PropertyTypeEx TextBulletFontName

TextBulletNumber

public static final ConstsEx.PropertyTypeEx TextBulletNumber

TextBulletRelativeSize

public static final ConstsEx.PropertyTypeEx TextBulletRelativeSize

TextBulletStyle

public static final ConstsEx.PropertyTypeEx TextBulletStyle

TextBulletType

public static final ConstsEx.PropertyTypeEx TextBulletType

TextFontBold

public static final ConstsEx.PropertyTypeEx TextFontBold

TextFontColor

public static final ConstsEx.PropertyTypeEx TextFontColor

TextFontEmboss

public static final ConstsEx.PropertyTypeEx TextFontEmboss

TextFontItalic

public static final ConstsEx.PropertyTypeEx TextFontItalic

TextFontName

public static final ConstsEx.PropertyTypeEx TextFontName

TextFontShadow

public static final ConstsEx.PropertyTypeEx TextFontShadow

TextFontSize

public static final ConstsEx.PropertyTypeEx TextFontSize

TextFontStyle

public static final ConstsEx.PropertyTypeEx TextFontStyle

TextFontWeight

public static final ConstsEx.PropertyTypeEx TextFontWeight

TextFontStrikeThrough

public static final ConstsEx.PropertyTypeEx TextFontStrikeThrough

TextFontSubscript

public static final ConstsEx.PropertyTypeEx TextFontSubscript

TextFontSuperscript

public static final ConstsEx.PropertyTypeEx TextFontSuperscript

TextFontUnderline

public static final ConstsEx.PropertyTypeEx TextFontUnderline

Visibility

public static final ConstsEx.PropertyTypeEx Visibility

PptWidth

public static final ConstsEx.PropertyTypeEx PptWidth

PptX

public static final ConstsEx.PropertyTypeEx PptX

PptY

public static final ConstsEx.PropertyTypeEx PptY

XShear

public static final ConstsEx.PropertyTypeEx XShear
Method Detail

values

public static ConstsEx.PropertyTypeEx[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ConstsEx.PropertyTypeEx c : ConstsEx.PropertyTypeEx.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ConstsEx.PropertyTypeEx valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getId

public int getId()