You are here:
Symbol Reference >
MtxParseExpr Namespace
>
Classes
>
TMtxExpression Class
>
public
>
TMtxExpression.ExprCount Property
MtxVec VCL
TMtxExpression.ExprCount Property
TMtxExpression Class
|
TMtxExpression Members
|
MtxParseExpr Namespace
|
public
|
Example
|
See Also
Collapse All
Number of expressions.
Pascal
property
ExprCount
: integer;
See Also
Expressions
Example
uses
MtxParseExpr
,
MtxParseClass
;
procedure
Example;
var
myParser:
TMtxExpression
;
begin
myParser := TMtxExpression.Create;
try
myParser.Expressions := 'x+y;sqrt(x);x/y'; ShowMessage(IntToStr(myParsers.ExprCount));
// 3
finally
myParser.Free;
end
;
end
;
Examples on GitHub
Group
public
Links
TMtxExpression Class
,
TMtxExpression Members
,
MtxParseExpr Namespace
,
public
,
Example
,
See Also
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic?
Send feedback!