'Declaration Public Function InsertDocProperty( _ ByVal cp As CustomProperty, _ Optional ByVal trackChanges As Boolean, _ Optional ByVal f As Formatting _ ) As DocProperty
'Usage Dim instance As Paragraph Dim cp As CustomProperty Dim trackChanges As Boolean Dim f As Formatting Dim value As DocProperty value = instance.InsertDocProperty(cp, trackChanges, f)
public DocProperty InsertDocProperty( CustomProperty cp, bool trackChanges, Formatting f )
Parameters
- cp
- The custom property to display.
- trackChanges
- true if this change should be tracked, otherwise false.
- f
- The formatting to use.
Return Value
The DocProperty that was inserted.