コード例 #1
0
		/// <summary>
		/// Cloning constructor.
		/// </summary>
		protected ImageSpatialTransform(ImageSpatialTransform source, ICloningContext context)
			: base(source, context)
		{
			context.CloneFields(source, this);
		}
コード例 #2
0
 /// <summary>
 /// Cloning constructor.
 /// </summary>
 protected ImageSpatialTransform(ImageSpatialTransform source, ICloningContext context)
     : base(source, context)
 {
     context.CloneFields(source, this);
 }
コード例 #3
0
		private void NewTransform()
		{
			_transform = new ImageSpatialTransform(new CalloutGraphic(""), 10,10,0,0,0,0);
			_transform.ClientRectangle = new Rectangle(0, 0, 15, 25);
		}