From 0c8e0caba76d60db6498670746e5a029605ae730 Mon Sep 17 00:00:00 2001 From: kyle-ds <51097593+kyle-ds@users.noreply.github.com> Date: Tue, 25 Jul 2023 22:18:12 -0700 Subject: [PATCH] Update WebTwain_Buffer.md Fix description of RemoveTag --- info/api/WebTwain_Buffer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/info/api/WebTwain_Buffer.md b/info/api/WebTwain_Buffer.md index 6a4cc9a4..2463f736 100644 --- a/info/api/WebTwain_Buffer.md +++ b/info/api/WebTwain_Buffer.md @@ -190,7 +190,7 @@ RemoveTag(tagName: string, indices?: number[]):boolean **Parameters** -`tagName`: Specify the new tag name. +`tagName`: Specify the tag to be removed. `indices`: Specify the index. @@ -220,7 +220,7 @@ RemoveTag(tagName: string, indices?: number[]):boolean **Usage Notes** -If the index is null, it will remove the tag you specified. If the index is not null, it will remove the specified tag on the image you selected. +If the index is not specified, the tag will be removed from _all images_. If the index is specified, the tag will be removed from the specified image(s). ---