home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "DOCPAGE"
- ' -----------------------------------------------------------------------------
- ' Copyright (C) 1993-1996 Visio Corporation. All rights reserved.
- '
- ' You have a royalty-free right to use, modify, reproduce and distribute
- ' the Sample Application Files (and/or any modified version) in any way
- ' you find useful, provided that you agree that Visio has no warranty,
- ' obligations or liability for any Sample Application Files.
- ' -----------------------------------------------------------------------------
-
- Option Explicit '-- All Variable Explicit!
-
- '--
- '-- Type DOCUMENT:
- '--
- '-- The DOCUMENT type is equivalent to a Visio document. A list can be
- '-- created from this type that contains the entire Visio document collection.
- '--
-
- Type DOCUMENT
- strDocName As String '-- Document Name
- strDocFilePath As String '-- Document Full File Name
- iPages As Integer '-- Total Pages In Document
- iPageListIndex As Integer '-- Position In Page List
- iCollIndex As Integer '-- Collection Index
- End Type
-
-
- '--
- '-- Type PAGE:
- '--
- '-- Type PAGE represents a Visio drawing page. Create an array of this type to
- '-- represent a documents pages.
- '--
-
- Type PAGE
- strName As String '-- Name Of Page
- iCollIndex As Integer '-- Collection Index
- End Type
-
-