Skybound.Gecko.PrintSettings.GetPrintOptions C# (CSharp) Méthode

GetPrintOptions() public méthode

public GetPrintOptions ( int aType ) : bool
aType int
Résultat bool
        public bool GetPrintOptions(int aType)
        {
            Console.WriteLine("1 aType = {0}", aType);
            if (!m_printOptions.ContainsKey(aType))
                return false;

            return m_printOptions[aType];
        }
PrintSettings