POST api/Design/GetStairTemplateBoundingBox
Request Information
URI Parameters
None.
Body Parameters
OnMouseLeftClickParameterDtoName | Description | Type | Additional information |
---|---|---|---|
MouseX | integer |
None. |
|
MouseY | integer |
None. |
|
ShiftPress | boolean |
None. |
|
CtrlPress | boolean |
None. |
|
AltPress | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "mouseX": 1, "mouseY": 2, "shiftPress": true, "ctrlPress": true, "altPress": true }
application/xml, text/xml
Sample:
<OnMouseLeftClickParameterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto.Parameter"> <AltPress>true</AltPress> <CtrlPress>true</CtrlPress> <MouseX>1</MouseX> <MouseY>2</MouseY> <ShiftPress>true</ShiftPress> </OnMouseLeftClickParameterDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RectangleSizeDtoName | Description | Type | Additional information |
---|---|---|---|
X | integer |
None. |
|
Y | integer |
None. |
|
Width | integer |
None. |
|
Height | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "x": 1, "y": 2, "width": 3, "height": 4 }
application/xml, text/xml
Sample:
<RectangleSizeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto.Drawing"> <Height>4</Height> <Width>3</Width> <X>1</X> <Y>2</Y> </RectangleSizeDto>