LEADTOOLS Medical (Leadtools.Medical.Workstation.DataAccessLayer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
UpdateVolumeState Method
See Also 
Leadtools.Medical.Workstation.DataAccessLayer Namespace > WorkstationDataAccessAgent Class : UpdateVolumeState Method




identifier
The unique identifier of the 3D volume which state will be updated.
volumeState
Type: List of System.Byte Array A list which contains the chunks of bytes that contains state information for the 3D volume.
identifier
The unique identifier of the 3D volume which state will be updated.
volumeState
Type: List of System.Byte Array A list which contains the chunks of bytes that contains state information for the 3D volume.
Update the state information of a 3D volume

Syntax

Visual Basic (Declaration) 
Public Overridable Sub UpdateVolumeState( _
   ByVal identifier As VolumeIdentifier, _
   ByVal volumeState As List(Of Byte()) _
) 
Visual Basic (Usage)Copy Code
Dim instance As WorkstationDataAccessAgent
Dim identifier As VolumeIdentifier
Dim volumeState As List(Of Byte())
 
instance.UpdateVolumeState(identifier, volumeState)
C# 
public virtual void UpdateVolumeState( 
   VolumeIdentifier identifier,
   List<byte[]> volumeState
)
Managed Extensions for C++ 
public: virtual void UpdateVolumeState( 
   VolumeIdentifier* identifier,
   List<byte[]>* volumeState
) 
C++/CLI 
public:
virtual void UpdateVolumeState( 
   VolumeIdentifier^ identifier,
   List<array<byte>>^ volumeState
) 

Parameters

identifier
The unique identifier of the 3D volume which state will be updated.
volumeState
Type: List of System.Byte Array A list which contains the chunks of bytes that contains state information for the 3D volume.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also