예제 #1
0
        // NOTE - You can't just add an OnShapeProperties handler to a shadow and get the event
        // You also need to change the shapesheet (in .vss file and in upgrade) to use the
        // double click handler used by others "RUNADDONWARGS(\"QueueMarkerEvent\",\"/PathMaker /CMD=2\")"
        private void OnShapeProperties(Shape shape)
        {
            Shadow shadow = LookupShadowByShape(shape);

            if (shadow != null)
            {
                shadow.OnShapeProperties();
            }
            else
            {
                Common.ErrorMessage("Error - properties on unexpected item " + shape.Name);
            }
        }