PKStudio.Tools.uVisionGenerator.Classes.uvProjectClasses.FileOptions.IsDefault C# (CSharp) Method

IsDefault() public method

Check is options default
public IsDefault ( ) : bool
return bool
        public bool IsDefault()
        {
            if (this.PropFld != "2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0") return false;
            if (this.AlwaysBuild != THREE_STATE_BOOL.DEFAULT) return false;
            if (this.IncBld != THREE_STATE_BOOL.DEFAULT) return false;
            if (this.GenAsm != THREE_STATE_BOOL.DEFAULT) return false;
            if (this.AsmAsm != THREE_STATE_BOOL.DEFAULT) return false;
            if (this.PublicsOnly != THREE_STATE_BOOL.DEFAULT) return false;
            if (this.StopCode != STOP_CODE.NotSecified) return false;
            if (this.CustArgs.Count > 0) return false;
            if (this.LibMods.Count > 0) return false;
            if (this.ADSCCFLG.ToString() != "2,84,85,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0") return false;
            if (this.ADSASFLG != "170,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0") return false;
            if (this.Define.Count > 0) return false;
            if (this.UnDefine.Count > 0) return false;
            if (this.Include.Count > 0) return false;
            if (this.Misc.Count > 0) return false;
            return true;
        }