コード例 #1
0
            public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
            {
                NumericLabelFormattingScientific s = null != o ? (NumericLabelFormattingScientific)o : new NumericLabelFormattingScientific();

                info.GetBaseValueEmbedded(s, typeof(NumericLabelFormattingBase), parent);
                return(s);
            }
コード例 #2
0
 public NumericLabelFormattingScientific(NumericLabelFormattingScientific from)
     : base(from) // everything is done here, since CopyFrom is virtual
 {
 }
コード例 #3
0
 public void CopyFrom(NumericLabelFormattingScientific from)
 {
     base.CopyFrom(from);
 }
コード例 #4
0
 public NumericLabelFormattingScientific(NumericLabelFormattingScientific from)
 {
     CopyFrom(from);
 }
コード例 #5
0
            public void Serialize(object obj, Altaxo.Serialization.Xml.IXmlSerializationInfo info)
            {
                NumericLabelFormattingScientific s = (NumericLabelFormattingScientific)obj;

                info.AddBaseValueEmbedded(s, typeof(NumericLabelFormattingBase));
            }
コード例 #6
0
 public void CopyFrom(NumericLabelFormattingScientific from)
 {
   base.CopyFrom(from);
 }
コード例 #7
0
 public NumericLabelFormattingScientific(NumericLabelFormattingScientific from)
 {
   CopyFrom(from);
 }
コード例 #8
0
		public NumericLabelFormattingScientific(NumericLabelFormattingScientific from)
			: base(from) // everything is done here, since CopyFrom is virtual
		{
		}