| 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.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code