-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdditivePlatformMachineElement_frameWidth.htm
More file actions
79 lines (78 loc) · 4.76 KB
/
AdditivePlatformMachineElement_frameWidth.htm
File metadata and controls
79 lines (78 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="topic-type" content="reference-adsk">
<meta name="helpsystempath" content="/view/NINVFUS/ENU/">
<link rel="canonical" href="/cloudhelp/ENU/Fusion-360-API/files/AdditivePlatformMachineElement_frameWidth.htm#!">
<meta name="product" content="NINVFUS">
<meta name="release" content="NA">
<meta name="book" content="Developer">
<meta name="component" content="Fusion-360-API">
<meta name="created" content="09/04/2025">
<meta name="user-comments" content="enable">
<meta name="contextid" content="AdditivePlatformMachineElement_frameWidth">
<meta name="description" content="AdditivePlatformMachineElement.frameWidth Property">
<meta name="topicid" content="GUID-F9C6D3D4-AD01-4874-89E4-7B53D84FA787">
<meta name="experiencelevel" content="expert">
<meta name="audience" content="programmer">
<meta name="language" content="ENU">
<title>AdditivePlatformMachineElement.frameWidth Property</title>
<link rel="stylesheet" href="../Style/jquery-ui.css"><script src="../Scripts/jquery-1.11.1.js"></script><script src="../Scripts/jquery-ui.js"></script><link rel="stylesheet" type="text/css" href="../Style/APIHelp-chm.css">
<link rel="stylesheet" type="text/css" href="/view/clientframework/client.css"><script type="text/javascript" src="/view/clientframework/client.js"></script><script>
// This turns on the display of the copyright notice which is not visible by default.
// Because the head is removed when used in the web help, this function will only exists
// when the chm help is being created.
window.onload = function() {
copyrightElement = document.getElementById('CopyrightNotice');
copyrightElement.style.display = 'block';
};
</script><script>
$(function() {
$( "#tabs" ).tabs();
});
</script></head>
<body>
<link rel="stylesheet" type="text/css" href="../Style/APIHelp.css">
<h1 class="api">AdditivePlatformMachineElement.frameWidth Property</h1>
Parent Object: <a href="AdditivePlatformMachineElement.htm">AdditivePlatformMachineElement</a><br>Defined in namespace "adsk::cam" and the header file is <Cam/Machine/AdditivePlatformMachineElement.h><h2 class="api">
Description
</h2>
<p class="api">Clearance width used for automatically arranging parts which is the distance from the edges of the build platform. Units are cm.</p>
<h2 class="api">
Syntax
</h2>
<div id="tabs">
<ul>
<li><a href="#Python">Python</a></li>
<li><a href="#C++">C++</a></li>
</ul>
<div id="Python" class="api-code">
<table class="api-code">
<td>"additivePlatformMachineElement_var" is a variable referencing an AdditivePlatformMachineElement object.</span><br /><br /><code><pre class="api-code"><span style="color:blue"># Get the value of the property.</span><br />propertyValue = additivePlatformMachineElement_var.<b>frameWidth<br /><br /><span style="color:blue"># Set the value of the property.</span><br />additivePlatformMachineElement_var.<b>frameWidth</b> = propertyValue</pre></code></td>
</table>
</div>
<div id="C++" class="api-code">
<table class="api-code">
<td>"additivePlatformMachineElement_var" is a variable referencing an AdditivePlatformMachineElement object.<br /><code><pre class="api-code">#include <Cam/Machine/AdditivePlatformMachineElement.h><br /><br /><span style="color:blue">// Get the value of the property.</span><br />double propertyValue = additivePlatformMachineElement_var-><b>frameWidth</b>();<br /><br /><span style="color:blue">// Set the value of the property, where value_var is a double.</span><br />bool returnValue = additivePlatformMachineElement_var-><b>frameWidth</b>(value_var);</pre></code></td>
</table>
</div>
</div>
<h2 class="api">
Property Value
</h2>This is a read/write property whose value is a double.<h2 class="api">
Version
</h2>
Introduced in version May 2025<br><br><div id="CopyrightNotice" style="display:none;">
<hr>
<table width="100%" style="font-size:15">
<tr>
<td align="left">
© Copyright 2025 Autodesk, Inc.
</td>
<td align="right"><a href="mailto:mfg.api.help.comments@autodesk.com?subject=Fusion%20May 2025%20API%20Help%20(AdditivePlatformMachineElement.frameWidth%20Function%20Help%20Topic)">Comment on this page.</a></td>
</tr>
</table>
</div>
</body>
</html>