'Declaration Public Function ReplacePicture( _ ByVal toBeReplaced As Picture, _ ByVal replaceWith As Picture _ ) As Picture
'Usage Dim instance As Container Dim toBeReplaced As Picture Dim replaceWith As Picture Dim value As Picture value = instance.ReplacePicture(toBeReplaced, replaceWith)
public Picture ReplacePicture( Picture toBeReplaced, Picture replaceWith )
Parameters
- toBeReplaced
- The Picture that will be replaced.
- replaceWith
- The Picture that will be inserted instead of the one identified by the toBeReplaced parameter.
Return Value
The Picture that replaced the original one.