URLZONEURLZONE*
*Contents  *Index  *Topic Contents
*Previous Topic: URLTEMPLATE
*Next Topic: URLZONEREG

URLZONE

typedef enum tagURLZONE {
    URLZONE_PREDEFINED_MIN = 0,
    URLZONE_LOCAL_MACHINE = 0,
    URLZONE_INTRANET,
    URLZONE_TRUSTED,
    URLZONE_INTERNET,
    URLZONE_UNTRUSTED,
    URLZONE_PREDEFINED_MAX = 999,
    URLZONE_USER_MIN = 1000,
    URLZONE_USER_MAX = 10000
} URLZONE;

This enumerated type contains all the predefined zones used by Internet Explorer.

URLZONE_PREDEFINED_MIN
Minimum value allowed for a zone value.
URLZONE_LOCAL_MACHINE
Zone used for content already on the user's local computer. This zone is not exposed by the user interface.
URLZONE_INTRANET
Zone used for content found on an intranet.
URLZONE_TRUSTED
Zone used for trusted Web sites on the Internet.
URLZONE_INTERNET
Zone used for most of the content on the Internet.
URLZONE_UNTRUSTED
Zone used for Web sites that are not trusted.
URLZONE_PREDEFINED_MAX
Maximum value allowed for a zone value.
URLZONE_USER_MIN
Minimum value allowed for a user-defined zone.
URLZONE_USER_MAX
Maximum value allowed for a user-defined zone.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.