'Declaration
Public Property AnnotationEffect As Effect
public Effect AnnotationEffect {get; set;}
public read-write property AnnotationEffect: Effect;
public function get,set AnnotationEffect : Effect
'Declaration
Public Property AnnotationEffect As Effect
public Effect AnnotationEffect {get; set;}
public read-write property AnnotationEffect: Effect;
public function get,set AnnotationEffect : Effect
'We assume that the GdViewer1 control has been properly integrated. Dim newEffect As System.Windows.Media.Effects.DropShadowEffect = New System.Windows.Media.Effects.DropShadowEffect() newEffect.Opacity = 0.5F GdViewer1.AnnotationEffect = newEffect
//We assume that the GdViewer1 control has been properly integrated.
System.Windows.Media.Effects.DropShadowEffect newEffect = New System.Windows.Media.Effects.DropShadowEffect();
newEffect.Opacity = 0.5f;
GdViewer1.AnnotationEffect = newEffect;