At.FF.Krems.FullscreenBrowser.Print.PrintController.Initialize C# (CSharp) Method

Initialize() private method

Initializes this instance.
private Initialize ( bool force = false ) : void
force bool Force initialization, even if already initialized.
return void
        private void Initialize(bool force = false)
        {
            if (this.initializeCalled && !force)
            {
                return;
            }

            this.initializeCalled = true;
            this.config = Bootstrapper.GetInstance<IBrowserConfiguration>().Config.PrintSettings;
        }