| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Data As Complex() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As FourierTransformInformation Dim value() As Complex value = instance.Data | |
| C# | |
|---|---|
public Complex[] Data {get;} | |
| C++/CLI | |
|---|---|
public: property array<Complex>^ Data { array<Complex>^ get(); } | |
Property 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].Refer to FastFourierTransformCommand()
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code