ILocalVariables

Assembly: ZennoLab.InterfacesLibrary
Full name: ZennoLab.InterfacesLibrary.ProjectModel.Collections.ILocalVariables


Represents a collection of local variables that can be accessed by name.

This interface can be used in action OwnCode (C# or PHP) of ProjectMaker.

Properties

Item

Property

Get the local variable by the specified name.

This property uses only for getting necessary local variable.

Parameters

ПараметрОписание
variableNameThe name of local variable.

Example

ILocalVariable lv = project.Variables["LocalVariable"];

Example2

$lv = $project->Variables->get_Item("LocalVariable");

Keys

Property

Get the keys list of variables items.