Eplan Platform API
Eplan.EplApi.DataModel.EObjects Namespace / Terminal.TerminalStripCache Class
Members Example

Terminal.TerminalStripCache Class
This class is used to enhance performance when getting sub-terminals of multi-level terminals. In order to enhance performance, create an object of this class before accessing sub-terminals of subsequent multi-level terminals and delete it afterwards.
Inheritance Hierarchy

System.Object
   Eplan.EplApi.DataModel.EObjects.Terminal.TerminalStripCache

Syntax
public sealed class Terminal.TerminalStripCache 
Example
Example of usage
Terminal[] oTerminals = new DMObjectsFinder(m_DistributedTerminalsProject).GetTerminals(null);
using (Terminal.TerminalStripCache oCache = new Terminal.TerminalStripCache())
{
    foreach (Terminal oTerminal in oTerminals)
    {
        StorableObject oParent = oTerminal.ParentFunction;
    }
}

Public Constructors
 NameDescription
Public ConstructorConstructor  
Top
Public Methods
 NameDescription
Public MethodDeterministic finalizer  
Top
See Also