Skip to content

Latest commit

 

History

History
62 lines (52 loc) · 1.39 KB

File metadata and controls

62 lines (52 loc) · 1.39 KB

SetWallHeights

Description

[[VS:Vectorworks 2012 Deprecated Functions|DEPRECATED after Vectorworks2012]]. See architectural category for replacement: :[[VS:DelObjStoryBound|DelObjStoryBound]] :[[VS:DelObjStoryBounds|DelObjStoryBounds]] :[[VS:GetObjBoundElevation|GetObjBoundElevation]] :[[VS:GetObjStoryBound|GetObjStoryBound]] :[[VS:GetObjStoryBoundsAt|GetObjStoryBoundsAt]] :[[VS:GetObjStoryBoundsCnt|GetObjStoryBoundsCnt]] :[[VS:GetStoryLayerInfo|GetStoryLayerInfo]] :[[VS:HasObjStoryBound|HasObjStoryBound]] :[[VS:HasObjStoryBounds|HasObjStoryBounds]] :[[VS:SetObjectStoryBound|SetObjectStoryBound]]

Sets the wall heights of an unstyled wall. Will return false for a styled wall.

FUNCTION SetWallHeights(
				h               : HANDLE;
				startHtDistance : REAL;
				endHtDistance   : REAL): BOOLEAN;
def vs.SetWallHeights(h, startHtDistance, endHtDistance):
    return BOOLEAN

Parameters

Name Type Description
h HANDLE
startHtDistance REAL
endHtDistance REAL

Examples

==== VectorScript ====

PROCEDURE Example;
VAR
h :HANDLE;
boo :BOOLEAN;
BEGIN
CallTool(-208);
h := FSActLayer;
boo := SetWallHeights(h, 12, 23);
END;
RUN(Example);

==== Python ====

Version

Availability: from VectorWorks12.0 Deprecated: [[VS:Vectorworks 2012 Deprecated Functions|Vectorworks 2012]]

Category

  • Objects - Walls