Raises or lowers multiple points in the GridSurface object.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public SurfaceOperationModifyMultipleGridPointsElevation RaisePoints(
	IEnumerable<GridLocation> locations,
	double deltaElevation
)
Visual Basic
Public Function RaisePoints ( _
	locations As IEnumerable(Of GridLocation), _
	deltaElevation As Double _
) As SurfaceOperationModifyMultipleGridPointsElevation
Visual C++
public:
SurfaceOperationModifyMultipleGridPointsElevation^ RaisePoints(
	IEnumerable<GridLocation>^ locations, 
	double deltaElevation
)

Parameters

locations
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'GridLocation>)>)>
The locations of points to be raised or lowered.
deltaElevation
Type: System..::..Double
Delta elevation for the points.

Remarks

If deltaElevation is positive, points are raised. If deltaElevation is negative, points are lowered.

See Also