Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 621 Bytes

File metadata and controls

34 lines (27 loc) · 621 Bytes

Height

Description

Returns the height of an object. If more than one object matches the search criteria, the function will return the sum of all the matching object heights.

FUNCTION Height(c : CRITERIA): REAL;
def vs.Height(c):
    return REAL

Parameters

Name Type Description
c CRITERIA Search criteria.

Examples

VectorScript

HeightValue:=Height(N='North Wall');

Python

HeightValue = vs.Height((N='North Wall'))

Version

Availability: from All Versions

Category