EndQuote
(read/write)
This property sets/gets the String containing characters, in order, that match the beginning quote characters in BeginQuote. Default is "')]}.
Example
% Create DSS object
DSSObject = actxserver('OpenDSSEngine.DSS')
if ~DSSObject.Start(0),
disp('Unable to start openDSS');
return
end;
DSSText = DSSObject.Text;
DSSCircuit = DSSObject.ActiveCircuit;
% Handler for Parser functions
DSSParser = DSSObject.Parser;
% Gets the end quote chars
myEQ = DSSParser.EndQuote;
DSSText.Command = 'compile "C:\Program Files\OpenDSS\EPRITestCircuits\ckt5\Master_ckt5.DSS"';
DSSText.Command = 'set maxiterations=1000 maxcontroliter=1000'; % Just in case
DSSCircuit.Solution.Solve(); % Solves Actor 1
% sets the string to be parsed
DSSParser.CmdString = set maxcontroliter=100';
% Gets the next value as double
myCtrlIter = DSSParser.DblValue;