本文整理汇总了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());
}
示例2: InsertMinimumDisplayAltitudeAt
public void InsertMinimumDisplayAltitudeAt(SchemaDecimal newValue, int index)
{
if( newValue.IsNull() == false )
InsertDomChildAt(NodeType.Element, "", "MinimumDisplayAltitude", index, newValue.ToString());
}
示例3: AddFloat2
public void AddFloat2(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "Float", newValue.ToString());
}
示例4: ReplaceresxAt
public void ReplaceresxAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
}
示例5: ReplaceEquatorialRadiusAt
public void ReplaceEquatorialRadiusAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Attribute, "", "EquatorialRadius", index, newValue.ToString());
}
示例6: AddDistanceAboveSurface
public void AddDistanceAboveSurface(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
}
示例7: Addresx
public void Addresx(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Attribute, "", "resx", newValue.ToString());
}
示例8: ReplaceLevelZeroTileSizeDegreesAt
public void ReplaceLevelZeroTileSizeDegreesAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "LevelZeroTileSizeDegrees", index, newValue.ToString());
}
示例9: InsertzAt
public void InsertzAt(SchemaDecimal newValue, int index)
{
InsertDomChildAt(NodeType.Element, "", "z", index, newValue.ToString());
}
示例10: AddSize
public void AddSize(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "Size", newValue.ToString());
}
示例11: AddLevelZeroTileSizeDegrees
public void AddLevelZeroTileSizeDegrees(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "LevelZeroTileSizeDegrees", newValue.ToString());
}
示例12: ReplaceRotationZAt
public void ReplaceRotationZAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "RotationZ", index, newValue.ToString());
}
示例13: AddRotationZ
public void AddRotationZ(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "RotationZ", newValue.ToString());
}
示例14: ReplaceFloat2At
public void ReplaceFloat2At(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "Float", index, newValue.ToString());
}
示例15: AddCertainty
public void AddCertainty(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "Certainty", newValue.ToString());
}