public CCablingConnectionIndicator(CTwoPointsIndicatorsImpl impl)
     : base(impl)
 {
     this.Impl.Actor.GetProperty().SetLineWidth(ApplicationOptions.Instance().CablingSimulationOption.LineWidth);
     this.Impl.Actor.GetProperty().SetColor(ApplicationOptions.Instance().CablingSimulationOption.LineColor);
 }
 public CTwoPointsIndicators(CTwoPointsIndicatorsImpl impl)
 {
     m_impl = impl;
     m_impl.Parent = this;
 }
        public CPipeBoundaryIndicator(CPipeBoundaryModel pipeBoundaryModel, CTwoPointsIndicatorsImpl impl)
            : base(impl)
        {
            m_PipeBoundaryModel = pipeBoundaryModel;

            this.Impl.Actor.GetProperty().SetLineWidth(ApplicationOptions.Instance().PipeBoundaryOption.LineWidth);
            this.Impl.Actor.GetProperty().SetColor(ApplicationOptions.Instance().PipeBoundaryOption.LineColor);
        }