FSO.Files.Formats.OTF.OTFTable.GetKey C# (CSharp) Method

GetKey() public method

public GetKey ( int id ) : OTFTableKey
id int
return OTFTableKey
        public OTFTableKey GetKey(int id)
        {
            return Keys.FirstOrDefault(x => x.ID == id);
        }
OTFTable