14 references to LightSourcePosition
System.Workflow.ComponentModel (14)
AuthoringOM\Design\DesignerHelpers.cs (6)
420internal static void DrawDropShadow(Graphics graphics, Rectangle shadowSourceRectangle, Color baseColor, int shadowDepth, LightSourcePosition lightSourcePosition, float lightSourceIntensity, bool roundEdges) 438if ((lightSourcePosition & LightSourcePosition.Center) > 0) 441if ((lightSourcePosition & LightSourcePosition.Left) > 0) 443else if ((lightSourcePosition & LightSourcePosition.Right) > 0) 445if ((lightSourcePosition & LightSourcePosition.Top) > 0) 447else if ((lightSourcePosition & LightSourcePosition.Bottom) > 0)
AuthoringOM\Design\DesignerWidgets.cs (2)
1423ActivityDesignerPaint.DrawDropShadow(e.Graphics, rectangle, Color.Black, AmbientTheme.DropShadowWidth, LightSourcePosition.Left | LightSourcePosition.Top, 0.2f, false);
AuthoringOM\Design\Glyphs\ShadowGlyph.cs (2)
42ActivityDesignerPaint.DrawDropShadow(graphics, designer.Bounds, designer.DesignerTheme.BorderPen.Color, AmbientTheme.DropShadowWidth, LightSourcePosition.Left | LightSourcePosition.Top, 0.5f, drawRounded);
AuthoringOM\Design\WorkflowLayouts.cs (4)
260ActivityDesignerPaint.DrawDropShadow(graphics, rootBounds, AmbientTheme.WorkflowBorderPen.Color, AmbientTheme.DropShadowWidth, LightSourcePosition.Left | LightSourcePosition.Top, 0.2f, false); 648ActivityDesignerPaint.DrawDropShadow(graphics, pageLayoutData.PageBounds, Color.Black, AmbientTheme.DropShadowWidth, LightSourcePosition.Left | LightSourcePosition.Top, 0.2f, false);