Example #1
0
 public ActionBlink(gPoint reference, vdLayout layout)
     : base(reference, layout)
 {
     ValueTypeProp |= valueType.DISTANCE;
     figure         = new VectorDrawBlink();
     figure.SetUnRegisterDocument(layout.Document);
     figure.setDocumentDefaults();
     figure.Origin = reference;
 }
Example #2
0
        public override void MatchProperties(VectorDraw.Professional.vdObjects.vdPrimary _from, VectorDraw.Professional.vdObjects.vdDocument thisdocument)
        {
            base.MatchProperties(_from, thisdocument);
            VectorDrawBlink from = _from as VectorDrawBlink;

            if (from == null)
            {
                return;
            }
            Radius = from.Radius;
            LineRotAngleDifference = from.LineRotAngleDifference;
            Interval  = from.Interval;
            ShowLines = from.ShowLines;
        }