home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98B.iso
/
Lotus
/
ITALIAN
/
LOTUS026.DSK
/
COLSTYLE.TPL
< prev
next >
Wrap
Text File
|
1997-01-30
|
624b
|
18 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 "Nome: "Style.Name
Print "Descrizione: "Style.Description
Print "Carattere - Nome carattere "Style.Font.ActualName
Print "Carattere - Dimensione " Style.Font.Size
Print "Carattere - Grassetto "Style.Font.Bold
Print "Carattere - TrueType "Style.Font.FontMetrics.IsTrueType
Print " --------------------------"
End Forall