Ejemplo n.º 1
0
        public Kalibreerder()
        {
            //
            try
            {
                _ArcObjectsHelper = new ArcObjectsHelper();

                // Zet de default waarden
                this.FillColor    = System.Drawing.Color.Red;
                this.OutlineColor = System.Drawing.Color.Black;

                this.KleurVormpuntMetAfwijking      = System.Drawing.Color.Red;
                this.KleurVormpuntBuitenZoekAfstand = System.Drawing.Color.Orange;
                this.KleurLijnBuitenZoekAfstand     = System.Drawing.Color.Yellow;
                this.KleurVormpuntBuitenInterval    = System.Drawing.Color.BlueViolet;
                this.KleurLijnNietMonotoon          = System.Drawing.Color.Red;
                this.KleurVormpuntBijgewerkt        = System.Drawing.Color.Green;
                this.KleurVormpuntNietBijgewerkt    = System.Drawing.Color.Red;
                this.KleurRaaiMetOngeldigeHmwaarde  = System.Drawing.Color.Red;

                this.TolerantieVormpuntBuitenInterval = 10;
                this.lrs_selectie = "";

                this.raai_selectie = "";

                this.KalibreerVormpuntenMetSpoorhartlijn = false;
                this.KalibreerVormpuntenMetRaaien        = true;
                this.MarkeerLijnNietMonotoon             = true;
                this.OpslaanLijnNietMonotoon             = false;
                this.SaveEdits     = true;
                this.LogVormpunten = false;
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show("Er is een onverwachte fout opgetreden; raadpleeg de logfile: " + ex.Message + ": " + ex.StackTrace, "Foutmelding");
                logger.LogException(LogLevel.Trace, "FOUT", ex);
                throw;
            }
        }
Ejemplo n.º 2
0
        public Kalibreerder()
        {
            //
            try
            {
                _ArcObjectsHelper = new ArcObjectsHelper();

                // Zet de default waarden
                this.FillColor = System.Drawing.Color.Red;
                this.OutlineColor = System.Drawing.Color.Black;

                this.KleurVormpuntMetAfwijking = System.Drawing.Color.Red;
                this.KleurVormpuntBuitenZoekAfstand = System.Drawing.Color.Orange;
                this.KleurLijnBuitenZoekAfstand = System.Drawing.Color.Yellow;
                this.KleurVormpuntBuitenInterval = System.Drawing.Color.BlueViolet;
                this.KleurLijnNietMonotoon = System.Drawing.Color.Red;
                this.KleurVormpuntBijgewerkt = System.Drawing.Color.Green;
                this.KleurVormpuntNietBijgewerkt = System.Drawing.Color.Red;
                this.KleurRaaiMetOngeldigeHmwaarde = System.Drawing.Color.Red;

                this.TolerantieVormpuntBuitenInterval = 10;
                this.lrs_selectie = "";

                this.raai_selectie = "";

                this.KalibreerVormpuntenMetSpoorhartlijn = false;
                this.KalibreerVormpuntenMetRaaien = true;
                this.MarkeerLijnNietMonotoon = true;
                this.OpslaanLijnNietMonotoon = false;
                this.SaveEdits = true;
                this.LogVormpunten = false;
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show("Er is een onverwachte fout opgetreden; raadpleeg de logfile: " + ex.Message + ": " + ex.StackTrace, "Foutmelding");
                logger.LogException(LogLevel.Trace, "FOUT", ex);
                throw;
            }
        }
Ejemplo n.º 3
0
 public cmdKalibreren()
 {
     this.ArcObjectsHelper = new ArcObjectsHelper();
     this.Kalibreerder     = new Kalibreerder();
 }