// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts.Tables.AdvancedTypographic.GPos { /// /// A placeholder subtable used for unimplemented or unrecognized GPOS lookup types. /// Always returns from . /// internal class NotImplementedSubTable : LookupSubTable { /// /// Initializes a new instance of the class. /// public NotImplementedSubTable() : base(default, 0) { } /// public override bool TryUpdatePosition( FontMetrics fontMetrics, GPosTable table, GlyphPositioningCollection collection, Tag feature, int index, int count) => false; } }