OpenXmlElement.ReplaceChild<T> Method
Replaces the child OpenXmlElement oldChild with newChild OpenXmlElement.
Namespace: DocumentFormat.OpenXml
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
声明
Public Overridable Function ReplaceChild(Of T As OpenXmlElement) ( _
newChild As OpenXmlElement, _
oldChild As T _
) As T
用法
Dim instance As OpenXmlElement
Dim newChild As OpenXmlElement
Dim oldChild As T
Dim returnValue As T
returnValue = instance.ReplaceChild(newChild, _
oldChild)
public virtual T ReplaceChild<T>(
OpenXmlElement newChild,
T oldChild
)
where T : OpenXmlElement
Type Parameters
- T
Parameters
- newChild
Type: DocumentFormat.OpenXml.OpenXmlElement
The new OpenXmlElement to put in the child list.
- oldChild
Type: T
The OpenXmlElement being replaced in the list.
Return Value
Type: T
The OpenXmlElement replaced.