FP300Service.UserControls.ReportUC.GetPrintTarget C# (CSharp) Method

GetPrintTarget() private method

private GetPrintTarget ( ) : int
return int
        private int GetPrintTarget()
        {
            int copy = 0;
            #if !EJ_READER
            if (cbxSoft.Checked)
            {
                copy += 1;
            }
            if (cbxHard.Checked)
            {
                copy += 2;
            }
            #endif
            if (copy == 0)
            {
                copy = 1;
            }

            return copy;
        }