SoVolumeDataFinishEditing Method |
Terminates an editing transaction.
Namespace: OIV.VolumeViz.NodesAssembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public override bool FinishEditing(
int transactionId
)
Public Overrides Function FinishEditing (
transactionId As Integer
) As Boolean
public:
virtual bool FinishEditing(
int transactionId
) override
abstract FinishEditing :
transactionId : int -> bool
override FinishEditing :
transactionId : int -> bool
Parameters
- transactionId
- Type: SystemInt32
Return Value
Type:
BooleanRemarks
Returns true if successful. May only be called with a valid transaction id returned by the OIV.VolumeViz.Nodes.SoVolumeData.StartEditing(System.Int32@) method. On error does nothing. The finish method will schedule a redraw so the correct data is displayed. To commit the edits, in other words to save the edited data back to the data source, call saveEditing().
See Also