1 type derived from CustomLineCap
System.Drawing (1)
commonui\System\Drawing\Advanced\AdjustableArrowCap.cs (1)
23public sealed class AdjustableArrowCap : CustomLineCap {
5 instantiations of CustomLineCap
System.Drawing (1)
commonui\System\Drawing\Advanced\CustomLineCap.cs (1)
178return new CustomLineCap(cap);
System.Workflow.Activities (2)
Designers\StateMachineDesignerPaint.cs (2)
172CustomLineCap customStartCap = new CustomLineCap(null, startCap); 180CustomLineCap customEndCap = new CustomLineCap(null, endCap);
System.Workflow.ComponentModel (2)
AuthoringOM\Design\DesignerHelpers.cs (2)
657CustomLineCap customStartCap = new CustomLineCap(null, startCap); 665CustomLineCap customEndCap = new CustomLineCap(null, endCap);
21 references to CustomLineCap
System.Drawing (13)
commonui\System\Drawing\Advanced\CustomLineCap.cs (9)
44/// Initializes a new instance of the <see cref='System.Drawing.Drawing2D.CustomLineCap'/> class with the specified outline 57/// Initializes a new instance of the <see cref='System.Drawing.Drawing2D.CustomLineCap'/> class from the 72/// Initializes a new instance of the <see cref='System.Drawing.Drawing2D.CustomLineCap'/> class from the 112/// <see cref='System.Drawing.Drawing2D.CustomLineCap'/>. 139/// <see cref='System.Drawing.Drawing2D.CustomLineCap'/>. 147/// Creates an exact copy of this <see cref='System.Drawing.Drawing2D.CustomLineCap'/>. 160return CustomLineCap.CreateCustomLineCapObject(cloneCap); 163internal static CustomLineCap CreateCustomLineCapObject(IntPtr cap) 263/// Gets or sets the <see cref='System.Drawing.Drawing2D.LineCap'/> on which this <see cref='System.Drawing.Drawing2D.CustomLineCap'/> is based.
commonui\System\Drawing\Pen.cs (4)
469public CustomLineCap CustomStartCap 478return CustomLineCap.CreateCustomLineCapObject(lineCap); 503public CustomLineCap CustomEndCap 512return CustomLineCap.CreateCustomLineCapObject(lineCap);
System.Workflow.Activities (4)
Designers\StateMachineDesignerPaint.cs (4)
172CustomLineCap customStartCap = new CustomLineCap(null, startCap); 180CustomLineCap customEndCap = new CustomLineCap(null, endCap); 193CustomLineCap disposableLineCap = pen.CustomStartCap; 200CustomLineCap disposableLineCap = pen.CustomEndCap;
System.Workflow.ComponentModel (4)
AuthoringOM\Design\DesignerHelpers.cs (4)
657CustomLineCap customStartCap = new CustomLineCap(null, startCap); 665CustomLineCap customEndCap = new CustomLineCap(null, endCap); 675CustomLineCap disposableLineCap = pen.CustomStartCap; 682CustomLineCap disposableLineCap = pen.CustomEndCap;