'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsSystem.LinqImportsGrapeCity.Documents.Word '' This sample lists all built-in styles available in DsWord.PublicClassListBuiltInStylesPublicFunctionCreateDocx() AsGcWordDocumentDim doc = NewGcWordDocument()Dim pars = doc.Body.Paragraphs pars.Add("List of All Built-in Styles", doc.Styles(BuiltInStyleId.Title)) '' List all built-in style names and types.'' Note that BuiltInStyleId.User is a special case that is not associated'' with any built-in style. This value is returned by the Style.BuiltInId'' property for user-defined styles, but cannot be used as an index'' on the Styles collection (an exception will occur):ForEach id In [Enum].GetValues(GetType(BuiltInStyleId))If id <> BuiltInStyleId.UserThen pars.Add($"Style name '{doc.Styles(id).Name}', type: '{doc.Styles(id).Type}'.")EndIfNext '' Done:Return docEndFunctionEndClass