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




Gets or sets the 3D volume data.

Syntax

Visual Basic (Declaration) 
Public Property VolumeData As List(Of Byte())
Visual Basic (Usage)Copy Code
Dim instance As SeriesVolume
Dim value As List(Of Byte())
 
instance.VolumeData = value
 
value = instance.VolumeData
C# 
public List<byte[]> VolumeData {get; set;}
Managed Extensions for C++ 
public: __property List<byte[]>* get_VolumeData();
public: __property void set_VolumeData( 
   List<byte[]>* value
);
C++/CLI 
public:
property List<array<byte>>^ VolumeData {
   List<array<byte>>^ get();
   void set (    List<array<byte>>^ value);
}

Property Value

Type: List of System.Byte Array A list which contains the chunks of bytes of 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