IMetabaseCustomObject.CreateReader

Syntax

CreateReader: IMetabaseCustomObjectReader;

Description

The CreateReader method creates an object that enables to read data from the object.

Example

Executing the example requires that the repository contains a custom class object with the OBJ_CUSTOM identifier. There also must be the file C:\To.txt.

Sub Main;

Var

Mb: IMetabase;

Object: IMetabaseObject;

CustomObject: IMetabaseCustomObject;

Writer: IMetabaseCustomObjectWriter;

Reader: IMetabaseCustomObjectReader;

Begin

Mb := MetabaseClass.Active;

Object := Mb.ItemById("OBJ_CUSTOM").Edit;

CustomObject := Object As IMetabaseCustomObject;

Reader := CustomObject.CreateReader;

Reader.Load;

Reader.ReadToFile("C:\To.txt");

Object.Save;

End Sub Main;

After executing the example data are downloaded in a custom object. Then these data are downloaded in the file C:\To.txt.

See also:

IMetabaseCustomObject