The placeholder in the template.
The value to replace the placeholder with.





In This Topic

AddPlaceholderReplacement Method (GdPictureOfficeTemplateBuilder<T>)

In This Topic
Adds a placeholder and its replacement value to the template.
Syntax
'Declaration

 

Public Function AddPlaceholderReplacement( _

   ByVal placeholder As String, _

   ByVal replacementValue As String _

) As T
public T AddPlaceholderReplacement( 

   string placeholder,

   string replacementValue

)
public function AddPlaceholderReplacement( 

    placeholder: String;

    replacementValue: String

): T; 
public function AddPlaceholderReplacement( 

   placeholder : String,

   replacementValue : String

) : T;
public: T* AddPlaceholderReplacement( 

   string* placeholder,

   string* replacementValue

) 
public:

T^ AddPlaceholderReplacement( 

   String^ placeholder,

   String^ replacementValue

) 

Parameters

placeholder
The placeholder in the template.
replacementValue
The value to replace the placeholder with.

Return Value

The template builder instance.
See Also