Shows or hides the feature Instant3D.
.NET Syntax
Visual Basic (Declaration) | |
---|
Property MoveSizeFeatures As Boolean |
Visual Basic (Usage) | |
---|
Dim instance As IFeatureManager
Dim value As Boolean
instance.MoveSizeFeatures = value
value = instance.MoveSizeFeatures
|
C# | |
---|
bool MoveSizeFeatures {get; set;} |
C++/CLI | |
---|
property bool MoveSizeFeatures {
bool get();
void set (bool value);
} |
Return Value
True to enable Instant3D, false to not
Example
Option Explicit
Dim swApp As SldWorks.SldWorks
Dim swModel As SldWorks.ModelDoc2
Dim swFeatMgr As SldWorks.FeatureManager
Sub main()
Set swApp = Application.SldWorks
Set swModel = swApp.ActiveDoc
Set swFeatMgr = swModel.FeatureManager
Debug.Print "Is Instant3D enabled? " & swFeatMgr.MoveSizeFeatures
swFeatMgr.MoveSizeFeatures = False
Debug.Print "Is Instant3D enabled? " & swFeatMgr.MoveSizeFeatures
swFeatMgr.MoveSizeFeatures = True
Debug.Print "Is Instant3D enabled? " & swFeatMgr.MoveSizeFeatures
End Sub
See Also
Availability
SolidWorks 2008 FCS, Revision Number 16.0