Skybound.Gecko.PrintSettings.GetEffectivePageSize C# (CSharp) Method

GetEffectivePageSize() public method

public GetEffectivePageSize ( double &aWidth, double &aHeight ) : void
aWidth double
aHeight double
return void
        public void GetEffectivePageSize(ref double aWidth, ref double aHeight)
        {
            Console.WriteLine("3");
            aWidth = m_effectivePageWidth;
            aHeight = m_effectivePageHeight;
        }
PrintSettings