LEADTOOLS Forms (Leadtools.Forms.Recognition assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
GetData Method
See Also 
Leadtools.Forms.Recognition Namespace > FormRecognitionAttributes Class : GetData Method



The GetData Method is available as an add-on to the LEADTOOLS Document and Medical Imaging toolkits.

Gets the array of bytes containing the encoded attributes.

Syntax

Visual Basic (Declaration) 
Public Function GetData() As Byte()
Visual Basic (Usage)Copy Code
Dim instance As FormRecognitionAttributes
Dim value() As Byte
 
value = instance.GetData()
C# 
public byte[] GetData()
C++/CLI 
public:
array<byte>^ GetData(); 

Example

This example saves form's attributes to a file.

Visual BasicCopy Code
''' This method saves a master form attributes object to the specified filename.
Public Sub SaveMasterFormAttributes(ByVal attributes As FormRecognitionAttributes, ByVal attributesFileName As String)
   Dim formData As Byte() = attributes.GetData()
   File.WriteAllBytes(attributesFileName, formData)
End Sub
C#Copy Code
/// This method saves master form attributes to the specified file name.
public void SaveMasterFormAttributes(FormRecognitionAttributes attributes, string attributesFileName)
{
   byte[] formData = attributes.GetData();
   File.WriteAllBytes(attributesFileName, formData);
}

Remarks

Forms attributes that are generated by FormRecognitionEngine.CreateMasterForm for Master Forms or FormRecognitionEngine.CreateForm for Forms will have the form's attributes that are specified in FormRecognitionEngine.ObjectsManagers.

To start modifying the form's attributes you have to open it using FormRecognitionEngine.OpenMasterForm for Master Forms or FormRecognitionEngine.OpenForm for Forms, or create it using FormRecognitionEngine.CreateMasterForm for Master Forms or FormRecognitionEngine.CreateForm for Forms.

Forms attributes data will be updated with the changes you made to the form attributes such as addition of a page or deletion of a page once the attributes is closed using either FormRecognitionEngine.CloseMasterForm for Master Form attributes or FormRecognitionEngine.CloseForm for Form attributes.

Once you finish modifying the form's attributes close it to reflect your changes.

GetData is useful to save attributes data specially for Master forms on the disk or database.

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

Leadtools.Forms requires a Forms Module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features