LitDev.ShapeProperty.ShapeProperty C# (CSharp) Method

ShapeProperty() public method

public ShapeProperty ( UIElement obj, RotateTransform rotateTransform, ScaleTransform scaleTransform, Point point ) : System
obj UIElement
rotateTransform System.Windows.Media.RotateTransform
scaleTransform System.Windows.Media.ScaleTransform
point Point
return System
        public ShapeProperty(UIElement obj, RotateTransform rotateTransform, ScaleTransform scaleTransform, Point point)
        {
            this.obj = obj;
            this.rotateTransform = rotateTransform;
            this.scaleTransform = scaleTransform;
            this.point = point;
        }
ShapeProperty