home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98B.iso
/
Lotus
/
SPANISH
/
LOTUS027.DSK
/
COLSTYLE.TPL
< prev
next >
Wrap
Text File
|
1995-08-24
|
603b
|
19 lines
' styles are stored in a collection
' the collection is accessible through the foundry at the division level
Dim MyStyles As ParagraphStyleCollection
Set MyStyles = .Division.Foundry.ParagraphStyles
NumberStyles = MyStyles.Count
Forall Style In MyStyles
Print "Nombre: "Style.Name
Print "Descripci≤n: "Style.Description
Print "Fuente - Nombre "Style.Font.ActualName
Print "Fuente - Tama±o " Style.Font.Size
Print "Fuente - Negrita "Style.Font.Bold
Print "Fuente - TrueType "Style.Font.FontMetrics.IsTrueType
Print " --------------------------"
End Forall