TableEffectProperties Class
Table effect properties in a slide.
Declaration
public class TableEffectProperties extends EffectPropertiesBase
Remarks
// Apply an outer shadow effect to the table.
TableEffectProperties effectProperties = new TableEffectProperties();
effectProperties.setOuterShadow(new OuterShadowEffect() {{
setAngle(45);
setColor(new OfficeColor(Color.getGray()));
setBlurRadius(100);
setDistance(10);
}});
table.setEffects(effectProperties);
Refer to the following help topic for additional information: Add Visual Effects.
Inherited Members
com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)
Inheritance
Object
JavaObject
OfficeObject
EffectPropertiesBase
TableEffectProperties
TableEffectProperties()
Initializes a new instance of the TableEffectProperties class.
Declaration
public TableEffectProperties()
Methods
deepClone() Method
Clones the current TableEffectProperties instance.
Declaration
public TableEffectProperties deepClone()
Returns
| Type | Description |
|---|---|
TableEffectProperties |
The cloned |