property count

(r/o) int32 count;

Typ

Zugriff

This property returns the number of different types in the transfer objects.
function onSample()
{
    var clipboard = shell.clipboard;
    if (clipboard)
    {
        var count = clipboard.count;
        if (count)
        {
            shell.print(count);
        }
    }
}