Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / MeshSurfaceData Class / SetValue Method
X-index of the data point.
Z-index of the data point.
Elevation value. Must be either a double value or DBNull.Value
X-position value. Must be either a double value or DBNull.Value
Z-position value. Must be either a double value or DBNull.Value


In This Topic
    SetValue Method (MeshSurfaceData)
    In This Topic
    Sets elevation, x-position and z-position values for a data point.
    Syntax
    'Declaration
     
    Public Sub SetValue( _
       ByVal indexX As Integer, _
       ByVal indexZ As Integer, _
       ByVal elevation As Object, _
       ByVal positionX As Object, _
       ByVal positionZ As Object _
    ) 
    'Usage
     
    Dim instance As MeshSurfaceData
    Dim indexX As Integer
    Dim indexZ As Integer
    Dim elevation As Object
    Dim positionX As Object
    Dim positionZ As Object
     
    instance.SetValue(indexX, indexZ, elevation, positionX, positionZ)
    public void SetValue( 
       int indexX,
       int indexZ,
       object elevation,
       object positionX,
       object positionZ
    )

    Parameters

    indexX
    X-index of the data point.
    indexZ
    Z-index of the data point.
    elevation
    Elevation value. Must be either a double value or DBNull.Value
    positionX
    X-position value. Must be either a double value or DBNull.Value
    positionZ
    Z-position value. Must be either a double value or DBNull.Value
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also