当前位置: 首页>>代码示例>>C#>>正文


C# SchemaDecimal.ToString方法代码示例

本文整理汇总了C#中Altova.Types.SchemaDecimal.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# SchemaDecimal.ToString方法的具体用法?C# SchemaDecimal.ToString怎么用?C# SchemaDecimal.ToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Altova.Types.SchemaDecimal的用法示例。


在下文中一共展示了SchemaDecimal.ToString方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InsertMinimumViewAltitudeAt

		public void InsertMinimumViewAltitudeAt(SchemaDecimal newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "MinimumViewAltitude", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_ShapeFileLayer2.cs

示例2: InsertMinimumDisplayAltitudeAt

 public void InsertMinimumDisplayAltitudeAt(SchemaDecimal newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "MinimumDisplayAltitude", index, newValue.ToString());
 }
开发者ID:paladin74,项目名称:Dapple,代码行数:5,代码来源:Type_Icon.cs

示例3: AddFloat2

		public void AddFloat2(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "Float", newValue.ToString());
		}
开发者ID:Zambos,项目名称:A_Shadowy_Adventure,代码行数:4,代码来源:ConstantType.cs

示例4: ReplaceresxAt

		public void ReplaceresxAt(SchemaDecimal newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:BoundingBoxType.cs

示例5: ReplaceEquatorialRadiusAt

		public void ReplaceEquatorialRadiusAt(SchemaDecimal newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "EquatorialRadius", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:WorldType.cs

示例6: AddDistanceAboveSurface

		public void AddDistanceAboveSurface(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_PathList.cs

示例7: Addresx

		public void Addresx(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "resx", newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:BoundingBoxType.cs

示例8: ReplaceLevelZeroTileSizeDegreesAt

		public void ReplaceLevelZeroTileSizeDegreesAt(SchemaDecimal newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "LevelZeroTileSizeDegrees", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:TerrainTileService.cs

示例9: InsertzAt

		public void InsertzAt(SchemaDecimal newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "z", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_Vector3.cs

示例10: AddSize

		public void AddSize(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "Size", newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_DisplayFont2.cs

示例11: AddLevelZeroTileSizeDegrees

		public void AddLevelZeroTileSizeDegrees(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "LevelZeroTileSizeDegrees", newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:TerrainTileService.cs

示例12: ReplaceRotationZAt

		public void ReplaceRotationZAt(SchemaDecimal newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "RotationZ", index, newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_Orientation2.cs

示例13: AddRotationZ

		public void AddRotationZ(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "RotationZ", newValue.ToString());
		}
开发者ID:jpespartero,项目名称:WorldWind,代码行数:4,代码来源:Type_Orientation2.cs

示例14: ReplaceFloat2At

		public void ReplaceFloat2At(SchemaDecimal newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "Float", index, newValue.ToString());
		}
开发者ID:Zambos,项目名称:A_Shadowy_Adventure,代码行数:4,代码来源:ConstantType.cs

示例15: AddCertainty

		public void AddCertainty(SchemaDecimal newValue)
		{
			AppendDomChild(NodeType.Element, "", "Certainty", newValue.ToString());
		}
开发者ID:Zambos,项目名称:A_Shadowy_Adventure,代码行数:4,代码来源:ActionType.cs


注:本文中的Altova.Types.SchemaDecimal.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。