| FeatureManagerExInsertComFeatureTMacroFeature, TParams Method (IFeatureManager, TParams) |
Inserts new macro feature
Namespace:
SolidWorks.Interop.sldworks
Assembly:
CodeStack.SwEx.MacroFeature (in CodeStack.SwEx.MacroFeature.dll) Version: 0.5.3.0 (0.5.3.0)
Syntax public static IFeature InsertComFeature<TMacroFeature, TParams>(
this IFeatureManager featMgr,
TParams parameters
)
where TMacroFeature : MacroFeatureEx<TParams>
where TParams : class, new()
<ExtensionAttribute>
Public Shared Function InsertComFeature(Of TMacroFeature As MacroFeatureEx(Of TParams), TParams As {Class, New}) (
featMgr As IFeatureManager,
parameters As TParams
) As IFeature
public:
[ExtensionAttribute]
generic<typename TMacroFeature, typename TParams>
where TMacroFeature : MacroFeatureEx<TParams>
where TParams : ref class, gcnew()
static IFeature^ InsertComFeature(
IFeatureManager^ featMgr,
TParams parameters
)
Parameters
- featMgr
- Type: IFeatureManager
Pointer to feature manager - parameters
- Type: TParams
Parameters to serialize to macro feature
Type Parameters
- TMacroFeature
- Definition of COM macro feature
- TParams
- Type of parameters to serialize to macro feature
Return Value
Type:
IFeatureNewly created feature
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IFeatureManager. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also