home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98a.iso
/
Wtestowe
/
Vistdtk
/
Install
/
Data.Z
/
Docpage.BAS
< prev
next >
Wrap
BASIC Source File
|
1996-09-04
|
2KB
|
41 lines
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