'Declaration Public MustOverride Sub Read()
'Usage Dim instance As FormDefinition instance.Read()
public abstract void Read()
public: abstract void Read();
public: abstract void Read();
'Declaration Public MustOverride Sub Read()
'Usage Dim instance As FormDefinition instance.Read()
public abstract void Read()
public: abstract void Read();
public: abstract void Read();
This method reads a form definition file, or other type of persistent storage, to determine the attributes of a form and then sets the value of this object's properties. When it is complete, it sets the HasChanged property to false. The implementation of this method resides in the FormDefinitionFile class or in a class that you derive from FormDefinition.
If you derive a new class from FormDefinition, you must override this method with code that reads the Name, Fields, TemplateImages, Operations, and OtherDataItems properties from persistent storage, then sets the HasChanged property to false. Unless necessary, you should not require the form definition file to be locked to call this method.