Returns the number of objects meeting the criteria that are flipped.
FUNCTION IsFlipped(c : CRITERIA): REAL;def vs.IsFlipped(c):
return REAL| Name | Type | Description |
|---|---|---|
| c | CRITERIA | Search criteria. |
This function returns true? if the object matching the given criteria (such as a symbol is flipped. Only certain types of objects can be flipped.
The change to criteria for this seems weird; does it accumulate the flipped states of the objects matching the criteria and return the sum?
PROCEDURE CountFlippedDoorSymbols;
BEGIN
Message(IsFlipped(S='*Door*'));
END;
RUN(CountFlippedDoorSymbols);VS Functions: IsObjectFlipped
Availability: from VectorWorks8.0