[]
Represents a custom dashing scheme.
It is a list of dash stop items which represent building block atoms upon which the custom dashing scheme is built.
public class DashStopList : FormattingBagList<DashStop>, IReadOnlyList<DashStop>, IReadOnlyCollection<DashStop>, IEnumerable<DashStop>, IEnumerable
Adds a new dash stop to the dashing scheme.
public DashStop Add(float dashLength, float spaceLength)
dashLength
floatThe length, in percent, of the dash relative to line width.
spaceLength
floatThe length, in percent, of the space relative to line width.
public override bool Equals(object fmt)
fmt
objectpublic override int GetHashCode()
Inserts a new dash stop into the dashing scheme.
public DashStop Insert(float dashLength, float spaceLength, int index)
dashLength
floatThe length, in percent, of the dash relative to line width.
spaceLength
floatThe length, in percent, of the space relative to line width.
index
intThe dash stop index.