AlphaTab.Importer.Gp3To5Importer.ReadPageSetup C# (CSharp) Method

ReadPageSetup() public method

public ReadPageSetup ( ) : void
return void
        public void ReadPageSetup()
        {
            // Page Width (4)
            // Page Heigth (4)
            // Padding Left (4)
            // Padding Right (4)
            // Padding Top (4)
            // Padding Bottom (4)
            // Size Proportion(4)
            // Header and Footer display flags (2)
            Data.Skip(30);
            // title format
            // subtitle format
            // artist format
            // album format
            // words format
            // music format
            // words and music format
            // copyright format
            // pagpublic enumber format
            for (int i = 0; i < 10; i++)
            {
                ReadStringIntByte();
            }
        }