Platforms to show: All Mac Windows Linux Cross-Platform

Back to WIAGUIDMBS class.

WIAGUIDMBS.Byte(index as Integer) as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Image Capture MBS Win Plugin 11.1 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Read or write the byte value.
Example
dim g as new WIAGUIDMBS

g.Byte(1) = 65

MsgBox str(g.Byte(1)) // shows 65

(Read and Write computed property)

WIAGUIDMBS.Constructor(value1 as Integer, value2 as Integer, value3 as Integer, value4 as Integer, value5 as Integer, value6 as Integer, value7 as Integer, value8 as Integer, value9 as Integer, value10 as Integer, value11 as Integer, value12 as Integer, value13 as Integer, value14 as Integer, value15 as Integer, value16 as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Image Capture MBS Win Plugin 11.1 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Creates a new GUID with the given byte values.
Example
dim g as new WIAGUIDMBS(&h14, &h3e, &h4e, &h83, &h64, &h97, &h11, &hd2, &ha2, &h31, &h00, &hc0, &h4f, &ha3, &h18, &h09)

MsgBox g.DisplayString

See also:

WIAGUIDMBS.Data as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Image Capture MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The UID as binary string.
Example
dim w as WIAGUIDMBS = WIAPropertyStorageMBS.kImageFormatTIFF
MsgBox EncodeBase64(w.Data)

(Read and Write computed property)

WIAGUIDMBS.DisplayString as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Image Capture MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
The ID well formatted.
Example
dim w as WIAGUIDMBS = WIAPropertyStorageMBS.kImageFormatTIFF

MsgBox w.DisplayString

WIAGUIDMBS.Equal(other as WIAGUIDMBS) as boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Image Capture MBS Win Plugin 10.3 ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Checks whether two GUIDs are equal.
Example
dim w as WIAGUIDMBS = WIAPropertyStorageMBS.kImageFormatTIFF
dim v as WIAGUIDMBS = WIAPropertyStorageMBS.kImageFormatTIFF

if w.Equal(v) then
MsgBox "Equal, right."
else
MsgBox "not equal, a bug."
end if

v = WIAPropertyStorageMBS.kImageFormatBMP

if w.Equal(v) then
MsgBox "Equal, a bug."
else
MsgBox "not equal, right."
end if

Returns true if both items are equals.

The items on this page are in the following plugins: MBS Win Plugin.


The biggest plugin in space...