本文整理汇总了C#中Altova.Types.SchemaDecimal类的典型用法代码示例。如果您正苦于以下问题:C# SchemaDecimal类的具体用法?C# SchemaDecimal怎么用?C# SchemaDecimal使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SchemaDecimal类属于Altova.Types命名空间,在下文中一共展示了SchemaDecimal类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddLevelZeroTileSizeDegrees
public void AddLevelZeroTileSizeDegrees(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "LevelZeroTileSizeDegrees", newValue.ToString());
}
示例2: ReplaceEquatorialRadiusAt
public void ReplaceEquatorialRadiusAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Attribute, "", "EquatorialRadius", index, newValue.ToString());
}
示例3: InsertMinimumDisplayAltitudeAt
public void InsertMinimumDisplayAltitudeAt(SchemaDecimal newValue, int index)
{
if( newValue.IsNull() == false )
InsertDomChildAt(NodeType.Element, "", "MinimumDisplayAltitude", index, newValue.ToString());
}
示例4: InsertresxAt
public void InsertresxAt(SchemaDecimal newValue, int index)
{
InsertDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
}
示例5: ScaleFactorType2
public ScaleFactorType2(SchemaDecimal newValue) : base(newValue)
{
Validate();
}
示例6: SchemaDecimal
public SchemaDecimal(SchemaDecimal obj)
{
myValue = obj.myValue;
isEmpty = obj.isEmpty;
isNull = obj.isNull;
}
示例7: ReplaceDistanceAboveSurfaceAt
public void ReplaceDistanceAboveSurfaceAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "DistanceAboveSurface", index, newValue.ToString());
}
示例8: MaxViewRangeType2
public MaxViewRangeType2(SchemaDecimal newValue) : base(newValue)
{
Validate();
}
示例9: DistanceAboveSurfaceType
public DistanceAboveSurfaceType(SchemaDecimal newValue) : base(newValue)
{
Validate();
}
示例10: AddTileSpreadFactor
public void AddTileSpreadFactor(SchemaDecimal newValue)
{
AppendDomChild(NodeType.Element, "", "TileSpreadFactor", newValue.ToString());
}
示例11: ReplaceTileSpreadFactorAt
public void ReplaceTileSpreadFactorAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "TileSpreadFactor", index, newValue.ToString());
}
示例12: InsertTileDrawDistanceFactorAt
public void InsertTileDrawDistanceFactorAt(SchemaDecimal newValue, int index)
{
InsertDomChildAt(NodeType.Element, "", "TileDrawDistanceFactor", index, newValue.ToString());
}
示例13: InsertzAt
public void InsertzAt(SchemaDecimal newValue, int index)
{
InsertDomChildAt(NodeType.Element, "", "z", index, newValue.ToString());
}
示例14: ReplaceLevelZeroTileSizeDegreesAt
public void ReplaceLevelZeroTileSizeDegreesAt(SchemaDecimal newValue, int index)
{
ReplaceDomChildAt(NodeType.Element, "", "LevelZeroTileSizeDegrees", index, newValue.ToString());
}
示例15: BoundingBoxOverlapType
public BoundingBoxOverlapType(SchemaDecimal newValue) : base(newValue)
{
Validate();
}