public void Justify(Slot start, Font font, double width, JustFlags flags, Slot first, Slot last) { IntPtr firstPtr = first != null ? first.SlotPtr : IntPtr.Zero; IntPtr lastPtr = last != null ? last.SlotPtr : IntPtr.Zero; Graphite2Api.SegJustify(_segment, start.SlotPtr, font.FontPtr, width, flags, firstPtr, lastPtr); }