System\Drawing\Drawing2D\CustomLineCap.cs (11)
15public CustomLineCap(GraphicsPath? fillPath, GraphicsPath? strokePath) : this(fillPath, strokePath, LineCap.Flat) { }
17public CustomLineCap(GraphicsPath? fillPath, GraphicsPath? strokePath, LineCap baseCap) : this(fillPath, strokePath, baseCap, 0) { }
19public CustomLineCap(GraphicsPath? fillPath, GraphicsPath? strokePath, LineCap baseCap, float baseInset)
99public void SetStrokeCaps(LineCap startCap, LineCap endCap)
105public void GetStrokeCaps(out LineCap startCap, out LineCap endCap)
107fixed (LineCap* sc = &startCap)
108fixed (LineCap* ec = &endCap)
131public LineCap BaseCap
135LineCap baseCap;