コード例 #1
0
ファイル: ImageGraphic.cs プロジェクト: carlhuth/GenXSource
            public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
            {
                ImageGraphic s = (ImageGraphic)o;

                info.GetBaseValueEmbedded(s, typeof(ImageGraphic).BaseType, parent);
                return(s);
            }
コード例 #2
0
 protected ImageGraphic(ImageGraphic from)
   :
   base(from)
 {
 }
コード例 #3
0
ファイル: ImageGraphic.cs プロジェクト: carlhuth/GenXSource
 protected ImageGraphic(ImageGraphic from)
     :
     base(from)
 {
 }
コード例 #4
0
ファイル: ImageGraphic.cs プロジェクト: carlhuth/GenXSource
            public void Serialize(object obj, Altaxo.Serialization.Xml.IXmlSerializationInfo info)
            {
                ImageGraphic s = (ImageGraphic)obj;

                info.AddBaseValueEmbedded(s, typeof(ImageGraphic).BaseType);
            }
コード例 #5
0
 public MyHitTestObject(ImageGraphic obj)
     : base(obj)
 {
 }
コード例 #6
0
 protected ImageGraphic(ImageGraphic from)
     :
     base(from) // all is done here, since CopyFrom is virtual!
 {
 }
コード例 #7
0
ファイル: ImageGraphic.cs プロジェクト: Altaxo/Altaxo
			public MyHitTestObject(ImageGraphic obj)
				: base(obj)
			{
			}
コード例 #8
0
ファイル: ImageGraphic.cs プロジェクト: Altaxo/Altaxo
		protected ImageGraphic(ImageGraphic from)
			:
			base(from) // all is done here, since CopyFrom is virtual!
		{
		}