Gets the 2D data array.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Data As Complex() |
Managed Extensions for C++ | |
---|
public: __property Complex[] get_Data(); |
C++/CLI | |
---|
public:
property array<Complex> Data {
array<Complex> get();
} |
Return Value
The 2D data array. Note that, although only one element is declared in the array, the array contains Width * Height elements. The frequency component for the pixel (row, col) is
Data[row *
Width + col].
Example
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also