Updates the definition of a feature with the new values in an associated feature data object obtained with
IFeature::GetDefinition.
.NET Syntax
Visual Basic (Declaration) | |
---|
Function ModifyDefinition( _
ByVal Data As System.Object, _
ByVal TopDoc As System.Object, _
ByVal Component As System.Object _
) As System.Boolean |
Visual Basic (Usage) | |
---|
Dim instance As IFeature
Dim Data As System.Object
Dim TopDoc As System.Object
Dim Component As System.Object
Dim value As System.Boolean
value = instance.ModifyDefinition(Data, TopDoc, Component) |
C# | |
---|
System.bool ModifyDefinition(
System.object Data,
System.object TopDoc,
System.object Component
) |
C++/CLI | |
---|
System.bool ModifyDefinition(
& System.Object^ Data,
& System.Object^ TopDoc,
& System.Object^ Component
) |
Parameters
- Data
Feature data object
- TopDoc
Top-level document (see Remarks)
- Component
Component for the feature (see Remarks)
Return Value
True if the feature is updated successfully, false if not
Example
Remarks
See Also