00001
00002
00003
00004
00005
00006
00007 #import <OfficeImport/OADEffect.h>
00008
00009 @class OADColor;
00010
00011 @interface OADShadowEffect : OADEffect
00012 {
00013 OADColor *mColor;
00014 float mBlurRadius;
00015 float mDistance;
00016 float mAngle;
00017 }
00018
00019 - (id)initWithShadowEffect:(id)fp8 type:(int)fp12;
00020 - (void)dealloc;
00021 - (id)color;
00022 - (void)setColor:(id)fp8;
00023 - (float)blurRadius;
00024 - (void)setBlurRadius:(float)fp8;
00025 - (float)distance;
00026 - (void)setDistance:(float)fp8;
00027 - (float)angle;
00028 - (void)setAngle:(float)fp8;
00029 - (void)setStyleColor:(id)fp8;
00030
00031 @end
00032