This interface is the general command interpreter for OpenDSS. It executes commands and queries and returns results just like the OpenDSS edit window in the Executable. This is one of the most used interfaces when driving OpenDSS through COM. The Text interface is exposed directly by the OpenDSSEngine.


Example


% Create DSS object

DSSObject = actxserver('OpenDSSEngine.DSS')

if ~DSSObject.Start(0),

                    disp("Unable to start openDSS");

                    return

end;

DSSText = DSSObject.Text;