.NET Matrix Library
Data Property
See Also  Send Feedback



This property is used while serializing and deserializing the Matrix object and is not intended to be used directly from your code.

Syntax

Visual Basic (Declaration) 
<XmlAttributeAttribute("base64Binary")>
Public Property Data As Byte()
Visual Basic (Usage)Copy Code
Dim instance As Matrix
Dim value() As Byte
 
instance.Data = value
 
value = instance.Data
C# 
[XmlAttributeAttribute("base64Binary")]
public byte[] Data {get; set;}
C++/CLI 
[XmlAttributeAttribute("base64Binary")]
public:
property array<byte>^ Data {
   array<byte>^ get();
   void set (    array<byte>^ value);
}

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library