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

In This Topic
    Terminal.TerminalStripCache Class
    In This Topic
    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 
    public ref class Terminal.TerminalStripCache sealed 
    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