當前位置: 首頁>>代碼示例>>C#>>正文


C# Altaxo.GetBaseValueEmbedded方法代碼示例

本文整理匯總了C#中Altaxo.GetBaseValueEmbedded方法的典型用法代碼示例。如果您正苦於以下問題:C# Altaxo.GetBaseValueEmbedded方法的具體用法?C# Altaxo.GetBaseValueEmbedded怎麽用?C# Altaxo.GetBaseValueEmbedded使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Altaxo的用法示例。


在下文中一共展示了Altaxo.GetBaseValueEmbedded方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = (EmbeddedImageGraphic)o ?? new EmbeddedImageGraphic(info);
				info.GetBaseValueEmbedded(s, typeof(EmbeddedImageGraphic).BaseType, parent);
				s.Image = (ImageProxy)info.GetValue("Image", s);
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:EmbeddedImageGraphic.cs

示例2: Deserialize

 public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
 {
   
   PositiveFiniteNumericalBoundaries s = null!=o ? (PositiveFiniteNumericalBoundaries)o : new PositiveFiniteNumericalBoundaries();
   info.GetBaseValueEmbedded(s,typeof(PositiveFiniteNumericalBoundaries).BaseType,parent);
   return s;
 }
開發者ID:xuchuansheng,項目名稱:GenXSource,代碼行數:7,代碼來源:PositiveFiniteNumericalBoundaries.cs

示例3: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = (Square)o ?? new Square();
				info.GetBaseValueEmbedded(s, s.GetType().BaseType, parent);

				return DeserializeSetV0(s, info, parent);
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:Square.cs

示例4: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				ColorProviderBGMYR s = null != o ? (ColorProviderBGMYR)o : new ColorProviderBGMYR();
				info.GetBaseValueEmbedded(s, typeof(ColorProviderBase), parent);

				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:ColorProviderBGMYR.cs

示例5: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				RowHeaderStyle s = null != o ? (RowHeaderStyle)o : new RowHeaderStyle();
				info.GetBaseValueEmbedded(s, typeof(RowHeaderStyle).BaseType, parent);
				s._rowHeight = info.GetInt32("Height");
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:RowHeaderStyle.cs

示例6: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = (NumericLabelFormattingAuto)o ?? new NumericLabelFormattingAuto();

				info.GetBaseValueEmbedded(s, typeof(NumericLabelFormattingAuto).BaseType, parent);
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:NumericLabelFormattingAuto.cs

示例7: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				NumericLabelFormattingBase s = (NumericLabelFormattingBase)o;
				info.GetBaseValueEmbedded(s, typeof(LabelFormattingBase), parent);
				s._decimalPlaces = info.GetInt32("DecimalPlaces");
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:NumericLabelFormattingBase.cs

示例8: Deserialize

			public virtual object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = (TransformedReadableColumnProxy)o ?? new TransformedReadableColumnProxy(info);
				info.GetBaseValueEmbedded(s, typeof(DocNodeProxy), parent);         // deserialize the base class
				s._transformation = (IVariantToVariantTransformation)info.GetValue("Transformation", s);
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:TransformedReadableColumnProxy.cs

示例9: Deserialize

			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);
				s._showExponentAlways = info.GetBoolean("ShowExponentAlways");
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:NumericLabelFormattingScientific.cs

示例10: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				NumericLabelFormattingAuto s = null != o ? (NumericLabelFormattingAuto)o : new NumericLabelFormattingAuto();

				info.GetBaseValueEmbedded(s, typeof(NumericLabelFormattingBase), parent);
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:NumericLabelFormattingAuto.cs

示例11: Deserialize

      public virtual object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
      {
        ReadableColumnProxy s = o!=null ? (ReadableColumnProxy)o : new ReadableColumnProxy();
        info.GetBaseValueEmbedded(s,typeof(DocNodeProxy),parent);         // deserialize the base class

        return s;
      }
開發者ID:xuchuansheng,項目名稱:GenXSource,代碼行數:7,代碼來源:ReadableColumnProxy.cs

示例12: Deserialize

 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;
 }
開發者ID:xuchuansheng,項目名稱:GenXSource,代碼行數:7,代碼來源:ImageGraphic.cs

示例13: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = null != o ? (LineShape)o : new LineShape(info);
				info.GetBaseValueEmbedded(s, typeof(LineShape).BaseType, parent);

				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:LineShape.cs

示例14: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				LinkedImageGraphic s = null != o ? (LinkedImageGraphic)o : new LinkedImageGraphic();
				info.GetBaseValueEmbedded(s, typeof(LinkedImageGraphic).BaseType, parent);
				s._imagePath = info.GetString("ImagePath");
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:LinkedImageGraphic.cs

示例15: Deserialize

			public object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
			{
				var s = (FreeLabelFormatting)o ?? new FreeLabelFormatting();
				info.GetBaseValueEmbedded(s, typeof(FreeLabelFormatting).BaseType, parent);
				s._formatString = info.GetString("FormatString");
				return s;
			}
開發者ID:Altaxo,項目名稱:Altaxo,代碼行數:7,代碼來源:FreeLabelFormatting.cs


注:本文中的Altaxo.GetBaseValueEmbedded方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。