{
  "api/index.html": {
    "href": "api/index.html",
    "title": "IronWord: Word Document Library for .NET | C# Word API | IronWord",
    "keywords": "IronWord: Word Document Library for .NET IronWord is a Word document library developed by Iron Software. IronWord excels in providing robust functionality for working with Word documents in .NET applications. Features of IronWord Load, Manipulate, and Save Word and Docx Document. PageSetup: Configuring paper size, page orientation, margins, and background color. TextRun: Handling text content, styles, splitting, appending text, and adding images. TextStyle: Managing font family, size, color, bold, italic, strikethrough, underline, superscript, and subscript. Paragraph: Adding text runs, images, shapes, setting styles, alignments, bullets, and numbering lists. Table: Manipulating table structure, including adding rows, getting and setting cell values, removing rows, merging cells, and more. Image: Loading images from files or streams, setting wrap text, position offset, width, height, and other properties. Shape: Setting wrap text, position offset, width, height, shape type, and rotation. Get Started Quickstart Guide: https://ironsoftware.com/csharp/word/docs/ Install with NuGet: https://www.nuget.org/packages/IronWord/ C# Code Examples Add Image using IronWord; using IronWord.Models; // Load docx WordDocument doc = new WordDocument(\"document.docx\"); // Configure image IronWord.Models.Image image = new IronWord.Models.Image(\"image.jpg\"); image.Width = 200; // In unit pixel image.Height = 200; // In unit pixel Paragraph paragraph = new Paragraph(); // Add image paragraph.AddImage(image); // Add paragraph doc.AddParagraph(paragraph); // Export docx doc.SaveAs(\"save_document.docx\"); Add Table using IronWord; using IronWord.Models; // Create table cell TableCell cell = new TableCell(); TextRun textRun = new TextRun(); textRun.Text = \"Sample text\"; // Add textrun to the cell cell.AddContent(new Paragraph(textRun)); // Configure border style BorderStyle borderStyle = new BorderStyle(); borderStyle.BorderColor = new IronColor(IronSoftware.Drawing.Color.Black); borderStyle.BorderValue = IronWord.Models.Enums.BorderValues.Thick; borderStyle.BorderSize = 5; // Configure table border TableBorders tableBorders = new TableBorders() { TopBorder = borderStyle, RightBorder = borderStyle, BottomBorder = borderStyle, LeftBorder = borderStyle, }; cell.Borders = tableBorders; // Create row and add cell TableRow row = new TableRow(); row.AddCell(cell); row.AddCell(cell); // Create table and add row Table table = new Table(); table.AddRow(row); // Create new Word document from the table WordDocument doc = new WordDocument(table); // Export Word document doc.SaveAs(\"Document.docx\"); Documentation More Code Samples : https://ironsoftware.com/csharp/word/examples/create-empty-word/ API Reference : https://ironsoftware.com/csharp/word/object-reference/api/ Tutorials : https://ironsoftware.com/csharp/word/tutorials/document-element/ Support : developers@ironsoftware.com"
  },
  "api/IronWord.html": {
    "href": "api/IronWord.html",
    "title": "Namespace IronWord | C# Word API | IronWord",
    "keywords": "Namespace IronWord Classes License StartUp WordDocument"
  },
  "api/IronWord.License.html": {
    "href": "api/IronWord.License.html",
    "title": "Class License | C# Word API | IronWord",
    "keywords": "Class License Inheritance System.Object License Namespace : IronWord Assembly : IronWord.dll Syntax public static class License : Object Properties IsLicensed Declaration public static bool IsLicensed { get; } Property Value Type Description System.Boolean LicenseKey Declaration public static string LicenseKey { get; set; } Property Value Type Description System.String Methods DisableAppAnalytics() Declaration public static void DisableAppAnalytics() IsValidLicense(String) Declaration public static bool IsValidLicense(string licenseKey) Parameters Type Name Description System.String licenseKey Returns Type Description System.Boolean"
  },
  "api/IronWord.Models.Abstract.ContentElement.html": {
    "href": "api/IronWord.Models.Abstract.ContentElement.html",
    "title": "Class ContentElement | C# Word API | IronWord",
    "keywords": "Class ContentElement Inheritance System.Object ContentElement ParentElement TextContentElement Chart Image ListLevel Shape Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class ContentElement : Object Constructors ContentElement() Declaration protected ContentElement() Fields Status Declaration public ElementStatus Status Field Value Type Description ElementStatus Properties Parent Declaration public ParentElement Parent { get; } Property Value Type Description ParentElement Methods Clone() Declaration public virtual ContentElement Clone() Returns Type Description ContentElement CloneObject<T>(T) Declaration protected static T CloneObject<T>(T original) where T : ContentElement Parameters Type Name Description T original Returns Type Description T Type Parameters Name Description T GetIndex<T>() Declaration protected int GetIndex<T>() where T : ContentElement Returns Type Description System.Int32 Type Parameters Name Description T Remove() Declaration public virtual void Remove() Replace(ContentElement) Declaration public void Replace(ContentElement newChild) Parameters Type Name Description ContentElement newChild"
  },
  "api/IronWord.Models.Abstract.DocumentStyle.html": {
    "href": "api/IronWord.Models.Abstract.DocumentStyle.html",
    "title": "Class DocumentStyle | C# Word API | IronWord",
    "keywords": "Class DocumentStyle Inheritance System.Object DocumentStyle ParagraphStyle Style TextStyle Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class DocumentStyle : Object Constructors DocumentStyle() Declaration protected DocumentStyle() Fields Status Declaration public ElementStatus Status Field Value Type Description ElementStatus Properties StyleId Declaration public string StyleId { get; set; } Property Value Type Description System.String Methods SetNoChangeStatusAsUpdated() Declaration protected void SetNoChangeStatusAsUpdated()"
  },
  "api/IronWord.Models.Abstract.FormElement.html": {
    "href": "api/IronWord.Models.Abstract.FormElement.html",
    "title": "Class FormElement | C# Word API | IronWord",
    "keywords": "Class FormElement Inheritance System.Object FormElement RadioButton TextInput Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class FormElement : Object Constructors FormElement() Declaration protected FormElement()"
  },
  "api/IronWord.Models.Abstract.html": {
    "href": "api/IronWord.Models.Abstract.html",
    "title": "Namespace IronWord.Models.Abstract | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Abstract Classes ContentElement DocumentStyle FormElement ParentElement TableElements TextContainer TextContentElement"
  },
  "api/IronWord.Models.Abstract.Interfaces.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.html",
    "title": "Namespace IronWord.Models.Abstract.Interfaces | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Abstract.Interfaces Interfaces IContentElement IDrawContainer IElementContainer ITextContainer ITextContentElement"
  },
  "api/IronWord.Models.Abstract.Interfaces.IContentElement.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.IContentElement.html",
    "title": "Interface IContentElement | C# Word API | IronWord",
    "keywords": "Interface IContentElement Namespace : IronWord.Models.Abstract.Interfaces Assembly : IronWord.dll Syntax public interface IContentElement Properties Children Declaration List<ContentElement> Children { get; set; } Property Value Type Description System.Collections.Generic.List < ContentElement > Parent Declaration ContentElement Parent { get; } Property Value Type Description ContentElement Methods AddChild(ContentElement[]) Declaration void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Clone() Declaration ContentElement Clone() Returns Type Description ContentElement ExtractElements<T>() Declaration List<T> ExtractElements<T>() where T : ContentElement Returns Type Description System.Collections.Generic.List <T> Type Parameters Name Description T GetChildByIndex<T>(Int32) Declaration ContentElement GetChildByIndex<T>(int index) where T : ContentElement Parameters Type Name Description System.Int32 index Returns Type Description ContentElement Type Parameters Name Description T InsertChildToIndex(Int32, ContentElement[]) Declaration void InsertChildToIndex(int index, params ContentElement[] children) Parameters Type Name Description System.Int32 index ContentElement [] children Remove() Declaration void Remove() RemoveAllChildren() Declaration void RemoveAllChildren() RemoveChildren(ContentElement[]) Declaration void RemoveChildren(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Replace(ContentElement) Declaration void Replace(ContentElement newChild) Parameters Type Name Description ContentElement newChild"
  },
  "api/IronWord.Models.Abstract.Interfaces.IDrawContainer.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.IDrawContainer.html",
    "title": "Interface IDrawContainer | C# Word API | IronWord",
    "keywords": "Interface IDrawContainer Namespace : IronWord.Models.Abstract.Interfaces Assembly : IronWord.dll Syntax public interface IDrawContainer Properties Images Declaration List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > Shapes Declaration List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Methods AddImage(AnyBitmap) Declaration Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddShape(Shape) Declaration Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape"
  },
  "api/IronWord.Models.Abstract.Interfaces.IElementContainer.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.IElementContainer.html",
    "title": "Interface IElementContainer | C# Word API | IronWord",
    "keywords": "Interface IElementContainer Inherited Members ITextContainer.AddText(String) ITextContainer.AddText(Text) ITextContainer.Texts IDrawContainer.AddShape(Shape) IDrawContainer.AddImage(Image) IDrawContainer.AddImage(Stream) IDrawContainer.AddImage(String) IDrawContainer.AddImage(AnyBitmap) IDrawContainer.Images IDrawContainer.Shapes Namespace : IronWord.Models.Abstract.Interfaces Assembly : IronWord.dll Syntax public interface IElementContainer : ITextContainer, IDrawContainer Properties MultiLevelTextLists Declaration List<MultiLevelTextList> MultiLevelTextLists { get; } Property Value Type Description System.Collections.Generic.List < MultiLevelTextList > Paragraphs Declaration List<Paragraph> Paragraphs { get; } Property Value Type Description System.Collections.Generic.List < Paragraph > Tables Declaration List<Table> Tables { get; } Property Value Type Description System.Collections.Generic.List < Table > Methods AddMultiLevelTextList(MultiLevelTextList) Declaration MultiLevelTextList AddMultiLevelTextList(MultiLevelTextList multiLevelTextList) Parameters Type Name Description MultiLevelTextList multiLevelTextList Returns Type Description MultiLevelTextList AddParagraph(Paragraph) Declaration Paragraph AddParagraph(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Returns Type Description Paragraph AddTable(Table) Declaration Table AddTable(Table table) Parameters Type Name Description Table table Returns Type Description Table Inherited members AddText(String) AddText(Text) Texts AddShape(Shape) AddImage(Image) AddImage(Stream) AddImage(String) AddImage(AnyBitmap) Images Shapes"
  },
  "api/IronWord.Models.Abstract.Interfaces.ITextContainer.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.ITextContainer.html",
    "title": "Interface ITextContainer | C# Word API | IronWord",
    "keywords": "Interface ITextContainer Namespace : IronWord.Models.Abstract.Interfaces Assembly : IronWord.dll Syntax public interface ITextContainer Properties Texts Declaration List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddText(Text) Declaration Text AddText(Text Run) Parameters Type Name Description Text Run Returns Type Description Text AddText(String) Declaration Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text"
  },
  "api/IronWord.Models.Abstract.Interfaces.ITextContentElement.html": {
    "href": "api/IronWord.Models.Abstract.Interfaces.ITextContentElement.html",
    "title": "Interface ITextContentElement | C# Word API | IronWord",
    "keywords": "Interface ITextContentElement Namespace : IronWord.Models.Abstract.Interfaces Assembly : IronWord.dll Syntax public interface ITextContentElement Properties Style Declaration TextStyle Style { get; set; } Property Value Type Description TextStyle Text Declaration string Text { get; set; } Property Value Type Description System.String Methods Find(String, Nullable<RegexOptions>, Boolean, Boolean) Declaration List<int> Find(string searchText, Nullable<RegexOptions> regexOption = null, bool wholeWordOnly = false, bool caseSensitive = false) Parameters Type Name Description System.String searchText System.Nullable < System.Text.RegularExpressions.RegexOptions > regexOption System.Boolean wholeWordOnly System.Boolean caseSensitive Returns Type Description System.Collections.Generic.List < System.Int32 > Replace(String, String, Nullable<RegexOptions>, Boolean, Boolean) Declaration ITextContentElement Replace(string searchText, string replaceText, Nullable<RegexOptions> regexOption = null, bool wholeWordOnly = false, bool caseSensitive = false) Parameters Type Name Description System.String searchText System.String replaceText System.Nullable < System.Text.RegularExpressions.RegexOptions > regexOption System.Boolean wholeWordOnly System.Boolean caseSensitive Returns Type Description ITextContentElement ToString() Declaration string ToString() Returns Type Description System.String"
  },
  "api/IronWord.Models.Abstract.ParentElement.html": {
    "href": "api/IronWord.Models.Abstract.ParentElement.html",
    "title": "Class ParentElement | C# Word API | IronWord",
    "keywords": "Class ParentElement Inheritance System.Object ContentElement ParentElement TableElements TextContainer Container DocumentSection ListItem MultiLevelTextList Paragraph Run Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class ParentElement : ContentElement Constructors ParentElement() Declaration protected ParentElement() ParentElement(ContentElement[]) Declaration public ParentElement(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Properties Children Declaration public List<ContentElement> Children { get; set; } Property Value Type Description System.Collections.Generic.List < ContentElement > Methods AddChild(ContentElement[]) Declaration public virtual void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ContentElement.Clone() CloneElement<T>(T) Declaration protected static T CloneElement<T>(T original) where T : ParentElement Parameters Type Name Description T original Returns Type Description T Type Parameters Name Description T ExtractElements<T>() Declaration public List<T> ExtractElements<T>() where T : ContentElement Returns Type Description System.Collections.Generic.List <T> Type Parameters Name Description T GetChildByIndex<T>(Int32) Declaration public ContentElement GetChildByIndex<T>(int index) where T : ContentElement Parameters Type Name Description System.Int32 index Returns Type Description ContentElement Type Parameters Name Description T InsertChildToIndex(Int32, ContentElement[]) Declaration public void InsertChildToIndex(int index, params ContentElement[] children) Parameters Type Name Description System.Int32 index ContentElement [] children LogObjectTree() Declaration public string LogObjectTree() Returns Type Description System.String Remove() Declaration public override void Remove() Overrides ContentElement.Remove() RemoveAllChildren() Declaration public void RemoveAllChildren() RemoveChildren(ContentElement[]) Declaration public void RemoveChildren(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Inherited members Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Abstract.TableElements.html": {
    "href": "api/IronWord.Models.Abstract.TableElements.html",
    "title": "Class TableElements | C# Word API | IronWord",
    "keywords": "Class TableElements Inheritance System.Object ContentElement ParentElement TableElements Table TableCell TableRow Inherited Members ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.Clone() ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class TableElements : ParentElement Constructors TableElements() Declaration protected TableElements() Properties BackgroundColor Declaration public Color BackgroundColor { get; set; } Property Value Type Description Color Borders Declaration public TableBorders Borders { get; set; } Property Value Type Description TableBorders Methods SetBorders(TableBorders) Declaration public void SetBorders(TableBorders borders) Parameters Type Name Description TableBorders borders Inherited members AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) Clone() CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Abstract.TextContainer.html": {
    "href": "api/IronWord.Models.Abstract.TextContainer.html",
    "title": "Class TextContainer | C# Word API | IronWord",
    "keywords": "Class TextContainer Inheritance System.Object ContentElement ParentElement TextContainer Implements ITextContainer Inherited Members ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.Clone() ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public class TextContainer : ParentElement, ITextContainer Constructors TextContainer() Declaration public TextContainer() Properties Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddChild(ContentElement[]) Declaration public override void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Overrides ParentElement.AddChild(ContentElement[]) AddText(Text) Declaration public Text AddText(Text text) Parameters Type Name Description Text text Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text Implements ITextContainer Inherited members InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) Clone() CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Abstract.TextContentElement.html": {
    "href": "api/IronWord.Models.Abstract.TextContentElement.html",
    "title": "Class TextContentElement | C# Word API | IronWord",
    "keywords": "Class TextContentElement Inheritance System.Object ContentElement TextContentElement Text Implements ITextContentElement Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.Clone() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models.Abstract Assembly : IronWord.dll Syntax public abstract class TextContentElement : ContentElement, ITextContentElement Constructors TextContentElement() Declaration protected TextContentElement() Properties Style Declaration public TextStyle Style { get; set; } Property Value Type Description TextStyle Text Declaration public string Text { get; set; } Property Value Type Description System.String Methods Find(String, Nullable<RegexOptions>, Boolean, Boolean) Declaration public List<int> Find(string searchText, Nullable<RegexOptions> regexOption = null, bool wholeWordOnly = false, bool caseSensitive = false) Parameters Type Name Description System.String searchText System.Nullable < System.Text.RegularExpressions.RegexOptions > regexOption System.Boolean wholeWordOnly System.Boolean caseSensitive Returns Type Description System.Collections.Generic.List < System.Int32 > Replace(String, String, Nullable<RegexOptions>, Boolean, Boolean) Declaration public ITextContentElement Replace(string searchText, string replaceText, Nullable<RegexOptions> regexOption = null, bool wholeWordOnly = false, bool caseSensitive = false) Parameters Type Name Description System.String searchText System.String replaceText System.Nullable < System.Text.RegularExpressions.RegexOptions > regexOption System.Boolean wholeWordOnly System.Boolean caseSensitive Returns Type Description ITextContentElement ToString() Declaration public override string ToString() Returns Type Description System.String Implements ITextContentElement Inherited members Status Replace(ContentElement) Remove() GetIndex<T>() Clone() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.AxisConfiguration.html": {
    "href": "api/IronWord.Models.AxisConfiguration.html",
    "title": "Class AxisConfiguration | C# Word API | IronWord",
    "keywords": "Class AxisConfiguration Inheritance System.Object AxisConfiguration Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class AxisConfiguration : Object Constructors AxisConfiguration() Declaration public AxisConfiguration()"
  },
  "api/IronWord.Models.Bevel.html": {
    "href": "api/IronWord.Models.Bevel.html",
    "title": "Class Bevel | C# Word API | IronWord",
    "keywords": "Class Bevel Inheritance System.Object Bevel Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Bevel : Object Constructors Bevel() Declaration public Bevel() Properties Height Declaration public double Height { get; set; } Property Value Type Description System.Double PresetProfileType Declaration public BevelPresetTypeValues PresetProfileType { get; set; } Property Value Type Description BevelPresetTypeValues Width Declaration public double Width { get; set; } Property Value Type Description System.Double Methods GetHeight(Units) Declaration public double GetHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetHeight(Double, Units) Declaration public void SetHeight(double height, Units measurementUnit) Parameters Type Name Description System.Double height Units measurementUnit SetWidth(Double, Units) Declaration public void SetWidth(double width, Units measurementUnit) Parameters Type Name Description System.Double width Units measurementUnit"
  },
  "api/IronWord.Models.Borders.html": {
    "href": "api/IronWord.Models.Borders.html",
    "title": "Class Borders | C# Word API | IronWord",
    "keywords": "Class Borders Inheritance System.Object Borders Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Borders : Object Constructors Borders() Declaration public Borders() Properties BottomBorder Declaration public BorderStyle BottomBorder { get; set; } Property Value Type Description BorderStyle LeftBorder Declaration public BorderStyle LeftBorder { get; set; } Property Value Type Description BorderStyle RightBorder Declaration public BorderStyle RightBorder { get; set; } Property Value Type Description BorderStyle TopBorder Declaration public BorderStyle TopBorder { get; set; } Property Value Type Description BorderStyle"
  },
  "api/IronWord.Models.BorderStyle.html": {
    "href": "api/IronWord.Models.BorderStyle.html",
    "title": "Class BorderStyle | C# Word API | IronWord",
    "keywords": "Class BorderStyle Inheritance System.Object BorderStyle Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class BorderStyle : Object Constructors BorderStyle() Declaration public BorderStyle() Properties BorderColor Declaration public Color BorderColor { get; set; } Property Value Type Description Color BorderSize Declaration public uint BorderSize { get; set; } Property Value Type Description System.UInt32 BorderSpace Declaration public uint BorderSpace { get; set; } Property Value Type Description System.UInt32 BorderValue Declaration public BorderValues BorderValue { get; set; } Property Value Type Description BorderValues"
  },
  "api/IronWord.Models.Chart.html": {
    "href": "api/IronWord.Models.Chart.html",
    "title": "Class Chart | C# Word API | IronWord",
    "keywords": "Class Chart Inheritance System.Object ContentElement Chart Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.Clone() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Chart : ContentElement Constructors Chart() Declaration public Chart() Chart(ChartType, String) Declaration public Chart(ChartType chartType, string title = null) Parameters Type Name Description ChartType chartType System.String title Properties AxisConfig Declaration public AxisConfiguration AxisConfig { get; set; } Property Value Type Description AxisConfiguration DataSource Declaration public ChartDataSource DataSource { get; set; } Property Value Type Description ChartDataSource HasLegend Declaration public bool HasLegend { get; set; } Property Value Type Description System.Boolean Style Declaration public ChartStyle Style { get; set; } Property Value Type Description ChartStyle Title Declaration public string Title { get; set; } Property Value Type Description System.String Type Declaration public ChartType Type { get; set; } Property Value Type Description ChartType Inherited members Status Replace(ContentElement) Remove() GetIndex<T>() Clone() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.ChartDataSource.html": {
    "href": "api/IronWord.Models.ChartDataSource.html",
    "title": "Class ChartDataSource | C# Word API | IronWord",
    "keywords": "Class ChartDataSource Inheritance System.Object ChartDataSource Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ChartDataSource : Object Constructors ChartDataSource() Declaration public ChartDataSource()"
  },
  "api/IronWord.Models.ChartStyle.html": {
    "href": "api/IronWord.Models.ChartStyle.html",
    "title": "Class ChartStyle | C# Word API | IronWord",
    "keywords": "Class ChartStyle Inheritance System.Object ChartStyle Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ChartStyle : Object Constructors ChartStyle() Declaration public ChartStyle()"
  },
  "api/IronWord.Models.Color.html": {
    "href": "api/IronWord.Models.Color.html",
    "title": "Class Color | C# Word API | IronWord",
    "keywords": "Class Color Inheritance System.Object Color Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Color : Object Constructors Color(Int32, Int32, Int32) Declaration public Color(int red, int green, int blue) Parameters Type Name Description System.Int32 red System.Int32 green System.Int32 blue Color(Int32, Int32, Int32, Int32) Declaration public Color(int alpha, int red, int green, int blue) Parameters Type Name Description System.Int32 alpha System.Int32 red System.Int32 green System.Int32 blue Color(String) Declaration public Color(string color) Parameters Type Name Description System.String color Fields Accent1 Declaration public static readonly Color Accent1 Field Value Type Description Color Accent2 Declaration public static readonly Color Accent2 Field Value Type Description Color Accent3 Declaration public static readonly Color Accent3 Field Value Type Description Color Accent4 Declaration public static readonly Color Accent4 Field Value Type Description Color Accent5 Declaration public static readonly Color Accent5 Field Value Type Description Color Accent6 Declaration public static readonly Color Accent6 Field Value Type Description Color AdditionalBackgroundColor Declaration public static readonly Color AdditionalBackgroundColor Field Value Type Description Color AdditionalTextColor Declaration public static readonly Color AdditionalTextColor Field Value Type Description Color AliceBlue Declaration public static readonly Color AliceBlue Field Value Type Description Color AntiqueWhite Declaration public static readonly Color AntiqueWhite Field Value Type Description Color Aqua Declaration public static readonly Color Aqua Field Value Type Description Color Aquamarine Declaration public static readonly Color Aquamarine Field Value Type Description Color AutoColor Declaration public static readonly Color AutoColor Field Value Type Description Color Azure Declaration public static readonly Color Azure Field Value Type Description Color Background1 Declaration public static readonly Color Background1 Field Value Type Description Color Background2 Declaration public static readonly Color Background2 Field Value Type Description Color BackgroundColor Declaration public static readonly Color BackgroundColor Field Value Type Description Color Beige Declaration public static readonly Color Beige Field Value Type Description Color Bisque Declaration public static readonly Color Bisque Field Value Type Description Color Black Declaration public static readonly Color Black Field Value Type Description Color BlanchedAlmond Declaration public static readonly Color BlanchedAlmond Field Value Type Description Color Blue Declaration public static readonly Color Blue Field Value Type Description Color BlueViolet Declaration public static readonly Color BlueViolet Field Value Type Description Color Brown Declaration public static readonly Color Brown Field Value Type Description Color BurlyWood Declaration public static readonly Color BurlyWood Field Value Type Description Color CadetBlue Declaration public static readonly Color CadetBlue Field Value Type Description Color Chartreuse Declaration public static readonly Color Chartreuse Field Value Type Description Color Chocolate Declaration public static readonly Color Chocolate Field Value Type Description Color Coral Declaration public static readonly Color Coral Field Value Type Description Color CornflowerBlue Declaration public static readonly Color CornflowerBlue Field Value Type Description Color Cornsilk Declaration public static readonly Color Cornsilk Field Value Type Description Color Crimson Declaration public static readonly Color Crimson Field Value Type Description Color Cyan Declaration public static readonly Color Cyan Field Value Type Description Color Dark1 Declaration public static readonly Color Dark1 Field Value Type Description Color Dark2 Declaration public static readonly Color Dark2 Field Value Type Description Color DarkBlue Declaration public static readonly Color DarkBlue Field Value Type Description Color DarkCyan Declaration public static readonly Color DarkCyan Field Value Type Description Color DarkGoldenrod Declaration public static readonly Color DarkGoldenrod Field Value Type Description Color DarkGray Declaration public static readonly Color DarkGray Field Value Type Description Color DarkGreen Declaration public static readonly Color DarkGreen Field Value Type Description Color DarkKhaki Declaration public static readonly Color DarkKhaki Field Value Type Description Color DarkMagenta Declaration public static readonly Color DarkMagenta Field Value Type Description Color DarkOliveGreen Declaration public static readonly Color DarkOliveGreen Field Value Type Description Color DarkOrange Declaration public static readonly Color DarkOrange Field Value Type Description Color DarkOrchid Declaration public static readonly Color DarkOrchid Field Value Type Description Color DarkRed Declaration public static readonly Color DarkRed Field Value Type Description Color DarkSalmon Declaration public static readonly Color DarkSalmon Field Value Type Description Color DarkSeaGreen Declaration public static readonly Color DarkSeaGreen Field Value Type Description Color DarkSlateBlue Declaration public static readonly Color DarkSlateBlue Field Value Type Description Color DarkSlateGray Declaration public static readonly Color DarkSlateGray Field Value Type Description Color DarkTurquoise Declaration public static readonly Color DarkTurquoise Field Value Type Description Color DarkViolet Declaration public static readonly Color DarkViolet Field Value Type Description Color DeepPink Declaration public static readonly Color DeepPink Field Value Type Description Color DeepSkyBlue Declaration public static readonly Color DeepSkyBlue Field Value Type Description Color DimGray Declaration public static readonly Color DimGray Field Value Type Description Color DodgerBlue Declaration public static readonly Color DodgerBlue Field Value Type Description Color Empty Declaration public static readonly Color Empty Field Value Type Description Color ExtraSchemeColor1 Declaration public static readonly Color ExtraSchemeColor1 Field Value Type Description Color ExtraSchemeColor2 Declaration public static readonly Color ExtraSchemeColor2 Field Value Type Description Color ExtraSchemeColor3 Declaration public static readonly Color ExtraSchemeColor3 Field Value Type Description Color ExtraSchemeColor4 Declaration public static readonly Color ExtraSchemeColor4 Field Value Type Description Color ExtraSchemeColor5 Declaration public static readonly Color ExtraSchemeColor5 Field Value Type Description Color ExtraSchemeColor6 Declaration public static readonly Color ExtraSchemeColor6 Field Value Type Description Color Firebrick Declaration public static readonly Color Firebrick Field Value Type Description Color FloralWhite Declaration public static readonly Color FloralWhite Field Value Type Description Color FollowedHyperlink Declaration public static readonly Color FollowedHyperlink Field Value Type Description Color ForestGreen Declaration public static readonly Color ForestGreen Field Value Type Description Color Fuchsia Declaration public static readonly Color Fuchsia Field Value Type Description Color Gainsboro Declaration public static readonly Color Gainsboro Field Value Type Description Color GhostWhite Declaration public static readonly Color GhostWhite Field Value Type Description Color Gold Declaration public static readonly Color Gold Field Value Type Description Color Goldenrod Declaration public static readonly Color Goldenrod Field Value Type Description Color Gray Declaration public static readonly Color Gray Field Value Type Description Color Green Declaration public static readonly Color Green Field Value Type Description Color GreenYellow Declaration public static readonly Color GreenYellow Field Value Type Description Color Honeydew Declaration public static readonly Color Honeydew Field Value Type Description Color HotPink Declaration public static readonly Color HotPink Field Value Type Description Color Hyperlink Declaration public static readonly Color Hyperlink Field Value Type Description Color HyperlinkColor Declaration public static readonly Color HyperlinkColor Field Value Type Description Color IndianRed Declaration public static readonly Color IndianRed Field Value Type Description Color Indigo Declaration public static readonly Color Indigo Field Value Type Description Color Ivory Declaration public static readonly Color Ivory Field Value Type Description Color Khaki Declaration public static readonly Color Khaki Field Value Type Description Color Lavender Declaration public static readonly Color Lavender Field Value Type Description Color LavenderBlush Declaration public static readonly Color LavenderBlush Field Value Type Description Color LawnGreen Declaration public static readonly Color LawnGreen Field Value Type Description Color LemonChiffon Declaration public static readonly Color LemonChiffon Field Value Type Description Color Light1 Declaration public static readonly Color Light1 Field Value Type Description Color Light2 Declaration public static readonly Color Light2 Field Value Type Description Color LightBlue Declaration public static readonly Color LightBlue Field Value Type Description Color LightCoral Declaration public static readonly Color LightCoral Field Value Type Description Color LightCyan Declaration public static readonly Color LightCyan Field Value Type Description Color LightGoldenrodYellow Declaration public static readonly Color LightGoldenrodYellow Field Value Type Description Color LightGray Declaration public static readonly Color LightGray Field Value Type Description Color LightGreen Declaration public static readonly Color LightGreen Field Value Type Description Color LightPink Declaration public static readonly Color LightPink Field Value Type Description Color LightSalmon Declaration public static readonly Color LightSalmon Field Value Type Description Color LightSeaGreen Declaration public static readonly Color LightSeaGreen Field Value Type Description Color LightSkyBlue Declaration public static readonly Color LightSkyBlue Field Value Type Description Color LightSlateGray Declaration public static readonly Color LightSlateGray Field Value Type Description Color LightSteelBlue Declaration public static readonly Color LightSteelBlue Field Value Type Description Color LightYellow Declaration public static readonly Color LightYellow Field Value Type Description Color Lime Declaration public static readonly Color Lime Field Value Type Description Color LimeGreen Declaration public static readonly Color LimeGreen Field Value Type Description Color Linen Declaration public static readonly Color Linen Field Value Type Description Color Magenta Declaration public static readonly Color Magenta Field Value Type Description Color MainDarkColor1 Declaration public static readonly Color MainDarkColor1 Field Value Type Description Color MainDarkColor2 Declaration public static readonly Color MainDarkColor2 Field Value Type Description Color MainLightColor1 Declaration public static readonly Color MainLightColor1 Field Value Type Description Color MainLightColor2 Declaration public static readonly Color MainLightColor2 Field Value Type Description Color Maroon Declaration public static readonly Color Maroon Field Value Type Description Color MediumAquamarine Declaration public static readonly Color MediumAquamarine Field Value Type Description Color MediumBlue Declaration public static readonly Color MediumBlue Field Value Type Description Color MediumOrchid Declaration public static readonly Color MediumOrchid Field Value Type Description Color MediumPurple Declaration public static readonly Color MediumPurple Field Value Type Description Color MediumSeaGreen Declaration public static readonly Color MediumSeaGreen Field Value Type Description Color MediumSlateBlue Declaration public static readonly Color MediumSlateBlue Field Value Type Description Color MediumSpringGreen Declaration public static readonly Color MediumSpringGreen Field Value Type Description Color MediumTurquoise Declaration public static readonly Color MediumTurquoise Field Value Type Description Color MediumVioletRed Declaration public static readonly Color MediumVioletRed Field Value Type Description Color MidnightBlue Declaration public static readonly Color MidnightBlue Field Value Type Description Color MintCream Declaration public static readonly Color MintCream Field Value Type Description Color MistyRose Declaration public static readonly Color MistyRose Field Value Type Description Color Moccasin Declaration public static readonly Color Moccasin Field Value Type Description Color NavajoWhite Declaration public static readonly Color NavajoWhite Field Value Type Description Color Navy Declaration public static readonly Color Navy Field Value Type Description Color None Declaration public static readonly Color None Field Value Type Description Color OldLace Declaration public static readonly Color OldLace Field Value Type Description Color Olive Declaration public static readonly Color Olive Field Value Type Description Color OliveDrab Declaration public static readonly Color OliveDrab Field Value Type Description Color Orange Declaration public static readonly Color Orange Field Value Type Description Color OrangeRed Declaration public static readonly Color OrangeRed Field Value Type Description Color Orchid Declaration public static readonly Color Orchid Field Value Type Description Color PaleGoldenrod Declaration public static readonly Color PaleGoldenrod Field Value Type Description Color PaleGreen Declaration public static readonly Color PaleGreen Field Value Type Description Color PaleTurquoise Declaration public static readonly Color PaleTurquoise Field Value Type Description Color PaleVioletRed Declaration public static readonly Color PaleVioletRed Field Value Type Description Color PapayaWhip Declaration public static readonly Color PapayaWhip Field Value Type Description Color PeachPuff Declaration public static readonly Color PeachPuff Field Value Type Description Color Peru Declaration public static readonly Color Peru Field Value Type Description Color Pink Declaration public static readonly Color Pink Field Value Type Description Color Plum Declaration public static readonly Color Plum Field Value Type Description Color PowderBlue Declaration public static readonly Color PowderBlue Field Value Type Description Color Purple Declaration public static readonly Color Purple Field Value Type Description Color RebeccaPurple Declaration public static readonly Color RebeccaPurple Field Value Type Description Color Red Declaration public static readonly Color Red Field Value Type Description Color RosyBrown Declaration public static readonly Color RosyBrown Field Value Type Description Color RoyalBlue Declaration public static readonly Color RoyalBlue Field Value Type Description Color SaddleBrown Declaration public static readonly Color SaddleBrown Field Value Type Description Color Salmon Declaration public static readonly Color Salmon Field Value Type Description Color SandyBrown Declaration public static readonly Color SandyBrown Field Value Type Description Color SeaGreen Declaration public static readonly Color SeaGreen Field Value Type Description Color SeaShell Declaration public static readonly Color SeaShell Field Value Type Description Color Sienna Declaration public static readonly Color Sienna Field Value Type Description Color Silver Declaration public static readonly Color Silver Field Value Type Description Color SkyBlue Declaration public static readonly Color SkyBlue Field Value Type Description Color SlateBlue Declaration public static readonly Color SlateBlue Field Value Type Description Color SlateGray Declaration public static readonly Color SlateGray Field Value Type Description Color Snow Declaration public static readonly Color Snow Field Value Type Description Color SpringGreen Declaration public static readonly Color SpringGreen Field Value Type Description Color SteelBlue Declaration public static readonly Color SteelBlue Field Value Type Description Color Tan Declaration public static readonly Color Tan Field Value Type Description Color Teal Declaration public static readonly Color Teal Field Value Type Description Color Text1 Declaration public static readonly Color Text1 Field Value Type Description Color Text2 Declaration public static readonly Color Text2 Field Value Type Description Color TextColor Declaration public static readonly Color TextColor Field Value Type Description Color Thistle Declaration public static readonly Color Thistle Field Value Type Description Color Tomato Declaration public static readonly Color Tomato Field Value Type Description Color Transparent Declaration public static readonly Color Transparent Field Value Type Description Color Turquoise Declaration public static readonly Color Turquoise Field Value Type Description Color Violet Declaration public static readonly Color Violet Field Value Type Description Color Wheat Declaration public static readonly Color Wheat Field Value Type Description Color White Declaration public static readonly Color White Field Value Type Description Color WhiteSmoke Declaration public static readonly Color WhiteSmoke Field Value Type Description Color Yellow Declaration public static readonly Color Yellow Field Value Type Description Color YellowGreen Declaration public static readonly Color YellowGreen Field Value Type Description Color Properties A Declaration public byte A { get; } Property Value Type Description System.Byte B Declaration public byte B { get; } Property Value Type Description System.Byte ColorType Declaration public ColorTypeValues ColorType { get; set; } Property Value Type Description ColorTypeValues ColorValue Declaration public string ColorValue { get; } Property Value Type Description System.String G Declaration public byte G { get; } Property Value Type Description System.Byte LuminanceModulation Declaration public Nullable<int> LuminanceModulation { get; set; } Property Value Type Description System.Nullable < System.Int32 > LuminanceOffset Declaration public Nullable<int> LuminanceOffset { get; set; } Property Value Type Description System.Nullable < System.Int32 > R Declaration public byte R { get; } Property Value Type Description System.Byte SaturationModulation Declaration public Nullable<int> SaturationModulation { get; set; } Property Value Type Description System.Nullable < System.Int32 > SchemaColor Declaration public SchemeColorValues SchemaColor { get; } Property Value Type Description SchemeColorValues ThemeColorValue Declaration public ThemeColorValues ThemeColorValue { get; } Property Value Type Description ThemeColorValues Methods Equals(Object) Declaration public override bool Equals(object other) Parameters Type Name Description System.Object other Returns Type Description System.Boolean FromArgb(Int32) Declaration public static Color FromArgb(int argb) Parameters Type Name Description System.Int32 argb Returns Type Description Color FromArgb(Int32, Color) Declaration public static Color FromArgb(int alpha, Color baseColor) Parameters Type Name Description System.Int32 alpha Color baseColor Returns Type Description Color FromArgb(Int32, Int32, Int32) Declaration public static Color FromArgb(int red, int green, int blue) Parameters Type Name Description System.Int32 red System.Int32 green System.Int32 blue Returns Type Description Color FromArgb(Int32, Int32, Int32, Int32) Declaration public static Color FromArgb(int alpha, int red, int green, int blue) Parameters Type Name Description System.Int32 alpha System.Int32 red System.Int32 green System.Int32 blue Returns Type Description Color GetBrightness() Declaration public double GetBrightness() Returns Type Description System.Double GetHashCode() Declaration public override int GetHashCode() Returns Type Description System.Int32 GetLuminance() Declaration public double GetLuminance() Returns Type Description System.Double SetAlpha(Int32) Declaration public void SetAlpha(int alpha) Parameters Type Name Description System.Int32 alpha ToArgb() Declaration public int ToArgb() Returns Type Description System.Int32 ToHtmlCssColorCode() Declaration public string ToHtmlCssColorCode() Returns Type Description System.String ToString() Declaration public override string ToString() Returns Type Description System.String Operators Equality(Color, Color) Declaration public static bool operator ==(Color left, Color right) Parameters Type Name Description Color left Color right Returns Type Description System.Boolean Implicit(Color to Color) Declaration public static implicit operator Color(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.Color Implicit(Color to Abgr32) Declaration public static implicit operator Abgr32(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Abgr32 Implicit(Color to Argb32) Declaration public static implicit operator Argb32(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Argb32 Implicit(Color to Bgr24) Declaration public static implicit operator Bgr24(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Bgr24 Implicit(Color to Bgra32) Declaration public static implicit operator Bgra32(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Bgra32 Implicit(Color to Rgb24) Declaration public static implicit operator Rgb24(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Rgb24 Implicit(Color to Rgb48) Declaration public static implicit operator Rgb48(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Rgb48 Implicit(Color to Rgba32) Declaration public static implicit operator Rgba32(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Rgba32 Implicit(Color to Rgba64) Declaration public static implicit operator Rgba64(Color color) Parameters Type Name Description Color color Returns Type Description SixLabors.ImageSharp.PixelFormats.Rgba64 Implicit(Color to Color) Declaration public static implicit operator Color(Color color) Parameters Type Name Description Color color Returns Type Description System.Drawing.Color Implicit(Color to Color) Declaration public static implicit operator Color(Color color) Parameters Type Name Description SixLabors.ImageSharp.Color color Returns Type Description Color Implicit(Abgr32 to Color) Declaration public static implicit operator Color(Abgr32 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Abgr32 color Returns Type Description Color Implicit(Argb32 to Color) Declaration public static implicit operator Color(Argb32 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Argb32 color Returns Type Description Color Implicit(Bgr24 to Color) Declaration public static implicit operator Color(Bgr24 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Bgr24 color Returns Type Description Color Implicit(Bgra32 to Color) Declaration public static implicit operator Color(Bgra32 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Bgra32 color Returns Type Description Color Implicit(Rgb24 to Color) Declaration public static implicit operator Color(Rgb24 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Rgb24 color Returns Type Description Color Implicit(Rgb48 to Color) Declaration public static implicit operator Color(Rgb48 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Rgb48 color Returns Type Description Color Implicit(Rgba32 to Color) Declaration public static implicit operator Color(Rgba32 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Rgba32 color Returns Type Description Color Implicit(Rgba64 to Color) Declaration public static implicit operator Color(Rgba64 color) Parameters Type Name Description SixLabors.ImageSharp.PixelFormats.Rgba64 color Returns Type Description Color Implicit(Color to Color) Declaration public static implicit operator Color(Color color) Parameters Type Name Description System.Drawing.Color color Returns Type Description Color Inequality(Color, Color) Declaration public static bool operator !=(Color left, Color right) Parameters Type Name Description Color left Color right Returns Type Description System.Boolean Extension Methods ColorHelper.ToHex(Color)"
  },
  "api/IronWord.Models.Common.Constants.html": {
    "href": "api/IronWord.Models.Common.Constants.html",
    "title": "Class Constants | C# Word API | IronWord",
    "keywords": "Class Constants Inheritance System.Object Constants Namespace : IronWord.Models.Common Assembly : IronWord.dll Syntax public static class Constants : Object Fields DefaultTextColor Declaration public const string DefaultTextColor = \"0015ef\" Field Value Type Description System.String"
  },
  "api/IronWord.Models.Common.html": {
    "href": "api/IronWord.Models.Common.html",
    "title": "Namespace IronWord.Models.Common | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Common Classes Constants"
  },
  "api/IronWord.Models.Container.html": {
    "href": "api/IronWord.Models.Container.html",
    "title": "Class Container | C# Word API | IronWord",
    "keywords": "Class Container Inheritance System.Object ContentElement ParentElement Container Inherited Members ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.Clone() ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Container : ParentElement Constructors Container() Declaration public Container() Container(ContentElement[]) Declaration public Container(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Properties BuiltInStyles Declaration public List<Style> BuiltInStyles { get; set; } Property Value Type Description System.Collections.Generic.List < Style > ParagraphsDefaultStyle Declaration public ParagraphStyle ParagraphsDefaultStyle { get; set; } Property Value Type Description ParagraphStyle TextsDefaultStyle Declaration public TextStyle TextsDefaultStyle { get; set; } Property Value Type Description TextStyle Methods AddChild(ContentElement[]) Declaration public override void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Overrides ParentElement.AddChild(ContentElement[]) Inherited members InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) Clone() CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.DocumentSection.html": {
    "href": "api/IronWord.Models.DocumentSection.html",
    "title": "Class DocumentSection | C# Word API | IronWord",
    "keywords": "Class DocumentSection Inheritance System.Object ContentElement ParentElement DocumentSection Implements IElementContainer ITextContainer IDrawContainer Inherited Members ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class DocumentSection : ParentElement, IElementContainer, ITextContainer, IDrawContainer Constructors DocumentSection(ContentElement[]) Declaration public DocumentSection(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Properties Charts Declaration public List<Chart> Charts { get; } Property Value Type Description System.Collections.Generic.List < Chart > Images Declaration public List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 MultiLevelTextLists Declaration public List<MultiLevelTextList> MultiLevelTextLists { get; } Property Value Type Description System.Collections.Generic.List < MultiLevelTextList > PageSetup Declaration public PageSetup PageSetup { get; set; } Property Value Type Description PageSetup Paragraphs Declaration public List<Paragraph> Paragraphs { get; } Property Value Type Description System.Collections.Generic.List < Paragraph > Shapes Declaration public List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Tables Declaration public List<Table> Tables { get; } Property Value Type Description System.Collections.Generic.List < Table > Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddChild(ContentElement[]) Declaration public override void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Overrides ParentElement.AddChild(ContentElement[]) AddImage(AnyBitmap) Declaration public Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration public Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration public Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration public Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddMultiLevelTextList(MultiLevelTextList) Declaration public MultiLevelTextList AddMultiLevelTextList(MultiLevelTextList multiLevelTextList) Parameters Type Name Description MultiLevelTextList multiLevelTextList Returns Type Description MultiLevelTextList AddParagraph(Paragraph) Declaration public Paragraph AddParagraph(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Returns Type Description Paragraph AddShape(Shape) Declaration public Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape AddTable(Table) Declaration public Table AddTable(Table table) Parameters Type Name Description Table table Returns Type Description Table AddText(Text) Declaration public Text AddText(Text text) Parameters Type Name Description Text text Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() Implements IElementContainer ITextContainer IDrawContainer Inherited members InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Effect3D.html": {
    "href": "api/IronWord.Models.Effect3D.html",
    "title": "Class Effect3D | C# Word API | IronWord",
    "keywords": "Class Effect3D Inheritance System.Object Effect3D Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Effect3D : Object Constructors Effect3D() Declaration public Effect3D() Fields DefaultEffect Declaration public static Effect3D DefaultEffect Field Value Type Description Effect3D Properties BevelBottom Declaration public Bevel BevelBottom { get; set; } Property Value Type Description Bevel BevelTop Declaration public Bevel BevelTop { get; set; } Property Value Type Description Bevel ContourColor Declaration public Color ContourColor { get; set; } Property Value Type Description Color ContourWidth Declaration public double ContourWidth { get; set; } Property Value Type Description System.Double ExtrusionColor Declaration public Color ExtrusionColor { get; set; } Property Value Type Description Color ExtrusionHeight Declaration public double ExtrusionHeight { get; set; } Property Value Type Description System.Double PresetMaterialType Declaration public PresetMaterialTypeValues PresetMaterialType { get; set; } Property Value Type Description PresetMaterialTypeValues Methods GetContourWidth(Units) Declaration public double GetContourWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetExtrusionHeight(Units) Declaration public double GetExtrusionHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetContourWidth(Double, Units) Declaration public void SetContourWidth(double contourWidth, Units measurementUnit) Parameters Type Name Description System.Double contourWidth Units measurementUnit SetExtrusionHeight(Double, Units) Declaration public void SetExtrusionHeight(double height, Units measurementUnit) Parameters Type Name Description System.Double height Units measurementUnit"
  },
  "api/IronWord.Models.ElementPosition.html": {
    "href": "api/IronWord.Models.ElementPosition.html",
    "title": "Class ElementPosition | C# Word API | IronWord",
    "keywords": "Class ElementPosition Inheritance System.Object ElementPosition Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ElementPosition : Object Constructors ElementPosition() Declaration public ElementPosition() Properties X Declaration public int X { get; set; } Property Value Type Description System.Int32 Y Declaration public int Y { get; set; } Property Value Type Description System.Int32 Methods GetXPosition(Units) Declaration public double GetXPosition(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetYPosition(Units) Declaration public double GetYPosition(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetXPosition(Double, Units) Declaration public void SetXPosition(double x, Units measurementUnit) Parameters Type Name Description System.Double x Units measurementUnit SetYPosition(Double, Units) Declaration public void SetYPosition(double y, Units measurementUnit) Parameters Type Name Description System.Double y Units measurementUnit"
  },
  "api/IronWord.Models.Enums.BevelPresetTypeValues.html": {
    "href": "api/IronWord.Models.Enums.BevelPresetTypeValues.html",
    "title": "Class BevelPresetTypeValues | C# Word API | IronWord",
    "keywords": "Class BevelPresetTypeValues Inheritance System.Object BevelPresetTypeValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class BevelPresetTypeValues : Enum Fields Angle Declaration public const BevelPresetTypeValues Angle Field Value Type Description BevelPresetTypeValues ArtDeco Declaration public const BevelPresetTypeValues ArtDeco Field Value Type Description BevelPresetTypeValues Circle Declaration public const BevelPresetTypeValues Circle Field Value Type Description BevelPresetTypeValues Convex Declaration public const BevelPresetTypeValues Convex Field Value Type Description BevelPresetTypeValues CoolSlant Declaration public const BevelPresetTypeValues CoolSlant Field Value Type Description BevelPresetTypeValues Cross Declaration public const BevelPresetTypeValues Cross Field Value Type Description BevelPresetTypeValues Divot Declaration public const BevelPresetTypeValues Divot Field Value Type Description BevelPresetTypeValues HardEdge Declaration public const BevelPresetTypeValues HardEdge Field Value Type Description BevelPresetTypeValues RelaxedInset Declaration public const BevelPresetTypeValues RelaxedInset Field Value Type Description BevelPresetTypeValues Riblet Declaration public const BevelPresetTypeValues Riblet Field Value Type Description BevelPresetTypeValues Slope Declaration public const BevelPresetTypeValues Slope Field Value Type Description BevelPresetTypeValues SoftRound Declaration public const BevelPresetTypeValues SoftRound Field Value Type Description BevelPresetTypeValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.BorderValues.html": {
    "href": "api/IronWord.Models.Enums.BorderValues.html",
    "title": "Class BorderValues | C# Word API | IronWord",
    "keywords": "Class BorderValues Inheritance System.Object BorderValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class BorderValues : Enum Fields DashDotStroked Declaration public const BorderValues DashDotStroked Field Value Type Description BorderValues Dashed Declaration public const BorderValues Dashed Field Value Type Description BorderValues DashSmallGap Declaration public const BorderValues DashSmallGap Field Value Type Description BorderValues DotDash Declaration public const BorderValues DotDash Field Value Type Description BorderValues DotDotDash Declaration public const BorderValues DotDotDash Field Value Type Description BorderValues Dotted Declaration public const BorderValues Dotted Field Value Type Description BorderValues Double Declaration public const BorderValues Double Field Value Type Description BorderValues DoubleWave Declaration public const BorderValues DoubleWave Field Value Type Description BorderValues Nil Declaration public const BorderValues Nil Field Value Type Description BorderValues None Declaration public const BorderValues None Field Value Type Description BorderValues Single Declaration public const BorderValues Single Field Value Type Description BorderValues Thick Declaration public const BorderValues Thick Field Value Type Description BorderValues ThickThinLargeGap Declaration public const BorderValues ThickThinLargeGap Field Value Type Description BorderValues ThickThinMediumGap Declaration public const BorderValues ThickThinMediumGap Field Value Type Description BorderValues ThickThinSmallGap Declaration public const BorderValues ThickThinSmallGap Field Value Type Description BorderValues ThinThickLargeGap Declaration public const BorderValues ThinThickLargeGap Field Value Type Description BorderValues ThinThickMediumGap Declaration public const BorderValues ThinThickMediumGap Field Value Type Description BorderValues ThinThickSmallGap Declaration public const BorderValues ThinThickSmallGap Field Value Type Description BorderValues ThinThickThinLargeGap Declaration public const BorderValues ThinThickThinLargeGap Field Value Type Description BorderValues ThinThickThinMediumGap Declaration public const BorderValues ThinThickThinMediumGap Field Value Type Description BorderValues ThinThickThinSmallGap Declaration public const BorderValues ThinThickThinSmallGap Field Value Type Description BorderValues ThreeDEmboss Declaration public const BorderValues ThreeDEmboss Field Value Type Description BorderValues ThreeDEngrave Declaration public const BorderValues ThreeDEngrave Field Value Type Description BorderValues Triple Declaration public const BorderValues Triple Field Value Type Description BorderValues value__ Declaration public int value__ Field Value Type Description System.Int32 Wave Declaration public const BorderValues Wave Field Value Type Description BorderValues"
  },
  "api/IronWord.Models.Enums.ChartType.html": {
    "href": "api/IronWord.Models.Enums.ChartType.html",
    "title": "Class ChartType | C# Word API | IronWord",
    "keywords": "Class ChartType Inheritance System.Object ChartType Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ChartType : Enum Fields Bar Declaration public const ChartType Bar Field Value Type Description ChartType Line Declaration public const ChartType Line Field Value Type Description ChartType Pie Declaration public const ChartType Pie Field Value Type Description ChartType value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.ColorTypeValues.html": {
    "href": "api/IronWord.Models.Enums.ColorTypeValues.html",
    "title": "Class ColorTypeValues | C# Word API | IronWord",
    "keywords": "Class ColorTypeValues Inheritance System.Object ColorTypeValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ColorTypeValues : Enum Fields SchemaColor Declaration public const ColorTypeValues SchemaColor Field Value Type Description ColorTypeValues Standard Declaration public const ColorTypeValues Standard Field Value Type Description ColorTypeValues ThemeColor Declaration public const ColorTypeValues ThemeColor Field Value Type Description ColorTypeValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.CompoundLineValues.html": {
    "href": "api/IronWord.Models.Enums.CompoundLineValues.html",
    "title": "Class CompoundLineValues | C# Word API | IronWord",
    "keywords": "Class CompoundLineValues Inheritance System.Object CompoundLineValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class CompoundLineValues : Enum Fields Double Declaration public const CompoundLineValues Double Field Value Type Description CompoundLineValues Simple Declaration public const CompoundLineValues Simple Field Value Type Description CompoundLineValues ThickThin Declaration public const CompoundLineValues ThickThin Field Value Type Description CompoundLineValues ThinThick Declaration public const CompoundLineValues ThinThick Field Value Type Description CompoundLineValues Triple Declaration public const CompoundLineValues Triple Field Value Type Description CompoundLineValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.Direction.html": {
    "href": "api/IronWord.Models.Enums.Direction.html",
    "title": "Class Direction | C# Word API | IronWord",
    "keywords": "Class Direction Inheritance System.Object Direction Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class Direction : Enum Fields LeftToRight Declaration public const Direction LeftToRight Field Value Type Description Direction RightToLeft Declaration public const Direction RightToLeft Field Value Type Description Direction value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.DocumentSectionType.html": {
    "href": "api/IronWord.Models.Enums.DocumentSectionType.html",
    "title": "Class DocumentSectionType | C# Word API | IronWord",
    "keywords": "Class DocumentSectionType Inheritance System.Object DocumentSectionType Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class DocumentSectionType : Enum Fields Appendix Declaration public const DocumentSectionType Appendix Field Value Type Description DocumentSectionType Default Declaration public const DocumentSectionType Default Field Value Type Description DocumentSectionType Index Declaration public const DocumentSectionType Index Field Value Type Description DocumentSectionType TitlePage Declaration public const DocumentSectionType TitlePage Field Value Type Description DocumentSectionType value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.ElementStatus.html": {
    "href": "api/IronWord.Models.Enums.ElementStatus.html",
    "title": "Class ElementStatus | C# Word API | IronWord",
    "keywords": "Class ElementStatus Inheritance System.Object ElementStatus Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ElementStatus : Enum Fields Deleted Declaration public const ElementStatus Deleted Field Value Type Description ElementStatus New Declaration public const ElementStatus New Field Value Type Description ElementStatus NoChange Declaration public const ElementStatus NoChange Field Value Type Description ElementStatus Updated Declaration public const ElementStatus Updated Field Value Type Description ElementStatus value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.EmphasisMarkValues.html": {
    "href": "api/IronWord.Models.Enums.EmphasisMarkValues.html",
    "title": "Class EmphasisMarkValues | C# Word API | IronWord",
    "keywords": "Class EmphasisMarkValues Inheritance System.Object EmphasisMarkValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class EmphasisMarkValues : Enum Fields Circle Declaration public const EmphasisMarkValues Circle Field Value Type Description EmphasisMarkValues Comma Declaration public const EmphasisMarkValues Comma Field Value Type Description EmphasisMarkValues Dot Declaration public const EmphasisMarkValues Dot Field Value Type Description EmphasisMarkValues None Declaration public const EmphasisMarkValues None Field Value Type Description EmphasisMarkValues UnderDot Declaration public const EmphasisMarkValues UnderDot Field Value Type Description EmphasisMarkValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.HexValueAttribute.html": {
    "href": "api/IronWord.Models.Enums.HexValueAttribute.html",
    "title": "Class HexValueAttribute | C# Word API | IronWord",
    "keywords": "Class HexValueAttribute Inheritance System.Object HexValueAttribute Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public class HexValueAttribute : Attribute Constructors HexValueAttribute(String) Declaration public HexValueAttribute(string hexValue) Parameters Type Name Description System.String hexValue Properties HexValue Declaration public string HexValue { get; } Property Value Type Description System.String"
  },
  "api/IronWord.Models.Enums.HorizontalAlignment.html": {
    "href": "api/IronWord.Models.Enums.HorizontalAlignment.html",
    "title": "Class HorizontalAlignment | C# Word API | IronWord",
    "keywords": "Class HorizontalAlignment Inheritance System.Object HorizontalAlignment Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class HorizontalAlignment : Enum Fields Center Declaration public const HorizontalAlignment Center Field Value Type Description HorizontalAlignment Left Declaration public const HorizontalAlignment Left Field Value Type Description HorizontalAlignment Right Declaration public const HorizontalAlignment Right Field Value Type Description HorizontalAlignment value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.html": {
    "href": "api/IronWord.Models.Enums.html",
    "title": "Namespace IronWord.Models.Enums | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Enums Classes BevelPresetTypeValues BorderValues ChartType ColorTypeValues CompoundLineValues Direction DocumentSectionType ElementStatus EmphasisMarkValues HexValueAttribute HorizontalAlignment ImageType JustificationValues LatentStylesValues LineCapValues LineSpacingRuleValues NumberFormatValues PageNumberStyle PageOrientation PaperSize PenAlignmentValues PresetLineDashValues PresetMaterialTypeValues ProtectionType RectangleAlignmentValues SchemeColorValues ShadingPatternValues ShapeType StrikeValue StrokeJoinStyleValues StyleValues TableStyle TextAlignment TextWrap TextWrapStyle ThemeColorValues ThemeFontValues UnderlineValues Units VerticalAlign VerticalAlignment VerticalPositionValues VerticalTextAlignmentValues WrapText"
  },
  "api/IronWord.Models.Enums.ImageType.html": {
    "href": "api/IronWord.Models.Enums.ImageType.html",
    "title": "Class ImageType | C# Word API | IronWord",
    "keywords": "Class ImageType Inheritance System.Object ImageType Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ImageType : Enum Fields Bmp Declaration public const ImageType Bmp Field Value Type Description ImageType Emf Declaration public const ImageType Emf Field Value Type Description ImageType Gif Declaration public const ImageType Gif Field Value Type Description ImageType Icon Declaration public const ImageType Icon Field Value Type Description ImageType Jpeg Declaration public const ImageType Jpeg Field Value Type Description ImageType Pcx Declaration public const ImageType Pcx Field Value Type Description ImageType Png Declaration public const ImageType Png Field Value Type Description ImageType Svg Declaration public const ImageType Svg Field Value Type Description ImageType Tiff Declaration public const ImageType Tiff Field Value Type Description ImageType value__ Declaration public int value__ Field Value Type Description System.Int32 Wmf Declaration public const ImageType Wmf Field Value Type Description ImageType"
  },
  "api/IronWord.Models.Enums.JustificationValues.html": {
    "href": "api/IronWord.Models.Enums.JustificationValues.html",
    "title": "Class JustificationValues | C# Word API | IronWord",
    "keywords": "Class JustificationValues Inheritance System.Object JustificationValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class JustificationValues : Enum Fields Both Declaration public const JustificationValues Both Field Value Type Description JustificationValues Center Declaration public const JustificationValues Center Field Value Type Description JustificationValues Distribute Declaration public const JustificationValues Distribute Field Value Type Description JustificationValues End Declaration public const JustificationValues End Field Value Type Description JustificationValues HighKashida Declaration public const JustificationValues HighKashida Field Value Type Description JustificationValues Left Declaration public const JustificationValues Left Field Value Type Description JustificationValues LowKashida Declaration public const JustificationValues LowKashida Field Value Type Description JustificationValues MediumKashida Declaration public const JustificationValues MediumKashida Field Value Type Description JustificationValues NumTab Declaration public const JustificationValues NumTab Field Value Type Description JustificationValues Right Declaration public const JustificationValues Right Field Value Type Description JustificationValues Start Declaration public const JustificationValues Start Field Value Type Description JustificationValues ThaiDistribute Declaration public const JustificationValues ThaiDistribute Field Value Type Description JustificationValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.LatentStylesValues.html": {
    "href": "api/IronWord.Models.Enums.LatentStylesValues.html",
    "title": "Class LatentStylesValues | C# Word API | IronWord",
    "keywords": "Class LatentStylesValues Inheritance System.Object LatentStylesValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class LatentStylesValues : Enum Fields annotation_reference Declaration public const LatentStylesValues annotation_reference Field Value Type Description LatentStylesValues annotation_subject Declaration public const LatentStylesValues annotation_subject Field Value Type Description LatentStylesValues annotation_text Declaration public const LatentStylesValues annotation_text Field Value Type Description LatentStylesValues Balloon_Text Declaration public const LatentStylesValues Balloon_Text Field Value Type Description LatentStylesValues Block_Text Declaration public const LatentStylesValues Block_Text Field Value Type Description LatentStylesValues Body_Text Declaration public const LatentStylesValues Body_Text Field Value Type Description LatentStylesValues Body_Text_2 Declaration public const LatentStylesValues Body_Text_2 Field Value Type Description LatentStylesValues Body_Text_3 Declaration public const LatentStylesValues Body_Text_3 Field Value Type Description LatentStylesValues Body_Text_First_Indent Declaration public const LatentStylesValues Body_Text_First_Indent Field Value Type Description LatentStylesValues Body_Text_First_Indent_2 Declaration public const LatentStylesValues Body_Text_First_Indent_2 Field Value Type Description LatentStylesValues Body_Text_Indent Declaration public const LatentStylesValues Body_Text_Indent Field Value Type Description LatentStylesValues Body_Text_Indent_2 Declaration public const LatentStylesValues Body_Text_Indent_2 Field Value Type Description LatentStylesValues Body_Text_Indent_3 Declaration public const LatentStylesValues Body_Text_Indent_3 Field Value Type Description LatentStylesValues caption Declaration public const LatentStylesValues caption Field Value Type Description LatentStylesValues Closing Declaration public const LatentStylesValues Closing Field Value Type Description LatentStylesValues Colorful_Grid Declaration public const LatentStylesValues Colorful_Grid Field Value Type Description LatentStylesValues Colorful_Grid_Accent_1 Declaration public const LatentStylesValues Colorful_Grid_Accent_1 Field Value Type Description LatentStylesValues Colorful_Grid_Accent_2 Declaration public const LatentStylesValues Colorful_Grid_Accent_2 Field Value Type Description LatentStylesValues Colorful_Grid_Accent_3 Declaration public const LatentStylesValues Colorful_Grid_Accent_3 Field Value Type Description LatentStylesValues Colorful_Grid_Accent_4 Declaration public const LatentStylesValues Colorful_Grid_Accent_4 Field Value Type Description LatentStylesValues Colorful_Grid_Accent_5 Declaration public const LatentStylesValues Colorful_Grid_Accent_5 Field Value Type Description LatentStylesValues Colorful_Grid_Accent_6 Declaration public const LatentStylesValues Colorful_Grid_Accent_6 Field Value Type Description LatentStylesValues Colorful_List Declaration public const LatentStylesValues Colorful_List Field Value Type Description LatentStylesValues Colorful_List_Accent_1 Declaration public const LatentStylesValues Colorful_List_Accent_1 Field Value Type Description LatentStylesValues Colorful_List_Accent_2 Declaration public const LatentStylesValues Colorful_List_Accent_2 Field Value Type Description LatentStylesValues Colorful_List_Accent_3 Declaration public const LatentStylesValues Colorful_List_Accent_3 Field Value Type Description LatentStylesValues Colorful_List_Accent_4 Declaration public const LatentStylesValues Colorful_List_Accent_4 Field Value Type Description LatentStylesValues Colorful_List_Accent_5 Declaration public const LatentStylesValues Colorful_List_Accent_5 Field Value Type Description LatentStylesValues Colorful_List_Accent_6 Declaration public const LatentStylesValues Colorful_List_Accent_6 Field Value Type Description LatentStylesValues Colorful_Shading Declaration public const LatentStylesValues Colorful_Shading Field Value Type Description LatentStylesValues Colorful_Shading_Accent_1 Declaration public const LatentStylesValues Colorful_Shading_Accent_1 Field Value Type Description LatentStylesValues Colorful_Shading_Accent_2 Declaration public const LatentStylesValues Colorful_Shading_Accent_2 Field Value Type Description LatentStylesValues Colorful_Shading_Accent_3 Declaration public const LatentStylesValues Colorful_Shading_Accent_3 Field Value Type Description LatentStylesValues Colorful_Shading_Accent_4 Declaration public const LatentStylesValues Colorful_Shading_Accent_4 Field Value Type Description LatentStylesValues Colorful_Shading_Accent_5 Declaration public const LatentStylesValues Colorful_Shading_Accent_5 Field Value Type Description LatentStylesValues Colorful_Shading_Accent_6 Declaration public const LatentStylesValues Colorful_Shading_Accent_6 Field Value Type Description LatentStylesValues Dark_List Declaration public const LatentStylesValues Dark_List Field Value Type Description LatentStylesValues Dark_List_Accent_1 Declaration public const LatentStylesValues Dark_List_Accent_1 Field Value Type Description LatentStylesValues Dark_List_Accent_2 Declaration public const LatentStylesValues Dark_List_Accent_2 Field Value Type Description LatentStylesValues Dark_List_Accent_3 Declaration public const LatentStylesValues Dark_List_Accent_3 Field Value Type Description LatentStylesValues Dark_List_Accent_4 Declaration public const LatentStylesValues Dark_List_Accent_4 Field Value Type Description LatentStylesValues Dark_List_Accent_5 Declaration public const LatentStylesValues Dark_List_Accent_5 Field Value Type Description LatentStylesValues Dark_List_Accent_6 Declaration public const LatentStylesValues Dark_List_Accent_6 Field Value Type Description LatentStylesValues Date Declaration public const LatentStylesValues Date Field Value Type Description LatentStylesValues Default_Paragraph_Font Declaration public const LatentStylesValues Default_Paragraph_Font Field Value Type Description LatentStylesValues Document_Map Declaration public const LatentStylesValues Document_Map Field Value Type Description LatentStylesValues E_mail_Signature Declaration public const LatentStylesValues E_mail_Signature Field Value Type Description LatentStylesValues Emphasis Declaration public const LatentStylesValues Emphasis Field Value Type Description LatentStylesValues endnote_reference Declaration public const LatentStylesValues endnote_reference Field Value Type Description LatentStylesValues endnote_text Declaration public const LatentStylesValues endnote_text Field Value Type Description LatentStylesValues envelope_address Declaration public const LatentStylesValues envelope_address Field Value Type Description LatentStylesValues envelope_return Declaration public const LatentStylesValues envelope_return Field Value Type Description LatentStylesValues FollowedHyperlink Declaration public const LatentStylesValues FollowedHyperlink Field Value Type Description LatentStylesValues footer Declaration public const LatentStylesValues footer Field Value Type Description LatentStylesValues footnote_reference Declaration public const LatentStylesValues footnote_reference Field Value Type Description LatentStylesValues footnote_text Declaration public const LatentStylesValues footnote_text Field Value Type Description LatentStylesValues header Declaration public const LatentStylesValues header Field Value Type Description LatentStylesValues heading_1 Declaration public const LatentStylesValues heading_1 Field Value Type Description LatentStylesValues heading_2 Declaration public const LatentStylesValues heading_2 Field Value Type Description LatentStylesValues heading_3 Declaration public const LatentStylesValues heading_3 Field Value Type Description LatentStylesValues heading_4 Declaration public const LatentStylesValues heading_4 Field Value Type Description LatentStylesValues heading_5 Declaration public const LatentStylesValues heading_5 Field Value Type Description LatentStylesValues heading_6 Declaration public const LatentStylesValues heading_6 Field Value Type Description LatentStylesValues heading_7 Declaration public const LatentStylesValues heading_7 Field Value Type Description LatentStylesValues heading_8 Declaration public const LatentStylesValues heading_8 Field Value Type Description LatentStylesValues heading_9 Declaration public const LatentStylesValues heading_9 Field Value Type Description LatentStylesValues HTML_Acronym Declaration public const LatentStylesValues HTML_Acronym Field Value Type Description LatentStylesValues HTML_Address Declaration public const LatentStylesValues HTML_Address Field Value Type Description LatentStylesValues HTML_Bottom_of_Form Declaration public const LatentStylesValues HTML_Bottom_of_Form Field Value Type Description LatentStylesValues HTML_Cite Declaration public const LatentStylesValues HTML_Cite Field Value Type Description LatentStylesValues HTML_Code Declaration public const LatentStylesValues HTML_Code Field Value Type Description LatentStylesValues HTML_Definition Declaration public const LatentStylesValues HTML_Definition Field Value Type Description LatentStylesValues HTML_Keyboard Declaration public const LatentStylesValues HTML_Keyboard Field Value Type Description LatentStylesValues HTML_Preformatted Declaration public const LatentStylesValues HTML_Preformatted Field Value Type Description LatentStylesValues HTML_Sample Declaration public const LatentStylesValues HTML_Sample Field Value Type Description LatentStylesValues HTML_Top_of_Form Declaration public const LatentStylesValues HTML_Top_of_Form Field Value Type Description LatentStylesValues HTML_Typewriter Declaration public const LatentStylesValues HTML_Typewriter Field Value Type Description LatentStylesValues HTML_Variable Declaration public const LatentStylesValues HTML_Variable Field Value Type Description LatentStylesValues Hyperlink Declaration public const LatentStylesValues Hyperlink Field Value Type Description LatentStylesValues index_1 Declaration public const LatentStylesValues index_1 Field Value Type Description LatentStylesValues index_2 Declaration public const LatentStylesValues index_2 Field Value Type Description LatentStylesValues index_3 Declaration public const LatentStylesValues index_3 Field Value Type Description LatentStylesValues index_4 Declaration public const LatentStylesValues index_4 Field Value Type Description LatentStylesValues index_5 Declaration public const LatentStylesValues index_5 Field Value Type Description LatentStylesValues index_6 Declaration public const LatentStylesValues index_6 Field Value Type Description LatentStylesValues index_7 Declaration public const LatentStylesValues index_7 Field Value Type Description LatentStylesValues index_8 Declaration public const LatentStylesValues index_8 Field Value Type Description LatentStylesValues index_9 Declaration public const LatentStylesValues index_9 Field Value Type Description LatentStylesValues index_heading Declaration public const LatentStylesValues index_heading Field Value Type Description LatentStylesValues Intense_Quote Declaration public const LatentStylesValues Intense_Quote Field Value Type Description LatentStylesValues Light_Grid Declaration public const LatentStylesValues Light_Grid Field Value Type Description LatentStylesValues Light_Grid_Accent_1 Declaration public const LatentStylesValues Light_Grid_Accent_1 Field Value Type Description LatentStylesValues Light_Grid_Accent_2 Declaration public const LatentStylesValues Light_Grid_Accent_2 Field Value Type Description LatentStylesValues Light_Grid_Accent_3 Declaration public const LatentStylesValues Light_Grid_Accent_3 Field Value Type Description LatentStylesValues Light_Grid_Accent_4 Declaration public const LatentStylesValues Light_Grid_Accent_4 Field Value Type Description LatentStylesValues Light_Grid_Accent_5 Declaration public const LatentStylesValues Light_Grid_Accent_5 Field Value Type Description LatentStylesValues Light_Grid_Accent_6 Declaration public const LatentStylesValues Light_Grid_Accent_6 Field Value Type Description LatentStylesValues Light_List Declaration public const LatentStylesValues Light_List Field Value Type Description LatentStylesValues Light_List_Accent_1 Declaration public const LatentStylesValues Light_List_Accent_1 Field Value Type Description LatentStylesValues Light_List_Accent_2 Declaration public const LatentStylesValues Light_List_Accent_2 Field Value Type Description LatentStylesValues Light_List_Accent_3 Declaration public const LatentStylesValues Light_List_Accent_3 Field Value Type Description LatentStylesValues Light_List_Accent_4 Declaration public const LatentStylesValues Light_List_Accent_4 Field Value Type Description LatentStylesValues Light_List_Accent_5 Declaration public const LatentStylesValues Light_List_Accent_5 Field Value Type Description LatentStylesValues Light_List_Accent_6 Declaration public const LatentStylesValues Light_List_Accent_6 Field Value Type Description LatentStylesValues Light_Shading Declaration public const LatentStylesValues Light_Shading Field Value Type Description LatentStylesValues Light_Shading_Accent_1 Declaration public const LatentStylesValues Light_Shading_Accent_1 Field Value Type Description LatentStylesValues Light_Shading_Accent_2 Declaration public const LatentStylesValues Light_Shading_Accent_2 Field Value Type Description LatentStylesValues Light_Shading_Accent_3 Declaration public const LatentStylesValues Light_Shading_Accent_3 Field Value Type Description LatentStylesValues Light_Shading_Accent_4 Declaration public const LatentStylesValues Light_Shading_Accent_4 Field Value Type Description LatentStylesValues Light_Shading_Accent_5 Declaration public const LatentStylesValues Light_Shading_Accent_5 Field Value Type Description LatentStylesValues Light_Shading_Accent_6 Declaration public const LatentStylesValues Light_Shading_Accent_6 Field Value Type Description LatentStylesValues line_number Declaration public const LatentStylesValues line_number Field Value Type Description LatentStylesValues List Declaration public const LatentStylesValues List Field Value Type Description LatentStylesValues List_2 Declaration public const LatentStylesValues List_2 Field Value Type Description LatentStylesValues List_3 Declaration public const LatentStylesValues List_3 Field Value Type Description LatentStylesValues List_4 Declaration public const LatentStylesValues List_4 Field Value Type Description LatentStylesValues List_5 Declaration public const LatentStylesValues List_5 Field Value Type Description LatentStylesValues List_Bullet Declaration public const LatentStylesValues List_Bullet Field Value Type Description LatentStylesValues List_Bullet_2 Declaration public const LatentStylesValues List_Bullet_2 Field Value Type Description LatentStylesValues List_Bullet_3 Declaration public const LatentStylesValues List_Bullet_3 Field Value Type Description LatentStylesValues List_Bullet_4 Declaration public const LatentStylesValues List_Bullet_4 Field Value Type Description LatentStylesValues List_Bullet_5 Declaration public const LatentStylesValues List_Bullet_5 Field Value Type Description LatentStylesValues List_Continue Declaration public const LatentStylesValues List_Continue Field Value Type Description LatentStylesValues List_Continue_2 Declaration public const LatentStylesValues List_Continue_2 Field Value Type Description LatentStylesValues List_Continue_3 Declaration public const LatentStylesValues List_Continue_3 Field Value Type Description LatentStylesValues List_Continue_4 Declaration public const LatentStylesValues List_Continue_4 Field Value Type Description LatentStylesValues List_Continue_5 Declaration public const LatentStylesValues List_Continue_5 Field Value Type Description LatentStylesValues List_Number Declaration public const LatentStylesValues List_Number Field Value Type Description LatentStylesValues List_Number_2 Declaration public const LatentStylesValues List_Number_2 Field Value Type Description LatentStylesValues List_Number_3 Declaration public const LatentStylesValues List_Number_3 Field Value Type Description LatentStylesValues List_Number_4 Declaration public const LatentStylesValues List_Number_4 Field Value Type Description LatentStylesValues List_Number_5 Declaration public const LatentStylesValues List_Number_5 Field Value Type Description LatentStylesValues List_Paragraph Declaration public const LatentStylesValues List_Paragraph Field Value Type Description LatentStylesValues macro Declaration public const LatentStylesValues macro Field Value Type Description LatentStylesValues Medium_Grid_1 Declaration public const LatentStylesValues Medium_Grid_1 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_1 Declaration public const LatentStylesValues Medium_Grid_1_Accent_1 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_2 Declaration public const LatentStylesValues Medium_Grid_1_Accent_2 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_3 Declaration public const LatentStylesValues Medium_Grid_1_Accent_3 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_4 Declaration public const LatentStylesValues Medium_Grid_1_Accent_4 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_5 Declaration public const LatentStylesValues Medium_Grid_1_Accent_5 Field Value Type Description LatentStylesValues Medium_Grid_1_Accent_6 Declaration public const LatentStylesValues Medium_Grid_1_Accent_6 Field Value Type Description LatentStylesValues Medium_Grid_2 Declaration public const LatentStylesValues Medium_Grid_2 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_1 Declaration public const LatentStylesValues Medium_Grid_2_Accent_1 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_2 Declaration public const LatentStylesValues Medium_Grid_2_Accent_2 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_3 Declaration public const LatentStylesValues Medium_Grid_2_Accent_3 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_4 Declaration public const LatentStylesValues Medium_Grid_2_Accent_4 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_5 Declaration public const LatentStylesValues Medium_Grid_2_Accent_5 Field Value Type Description LatentStylesValues Medium_Grid_2_Accent_6 Declaration public const LatentStylesValues Medium_Grid_2_Accent_6 Field Value Type Description LatentStylesValues Medium_Grid_3 Declaration public const LatentStylesValues Medium_Grid_3 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_1 Declaration public const LatentStylesValues Medium_Grid_3_Accent_1 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_2 Declaration public const LatentStylesValues Medium_Grid_3_Accent_2 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_3 Declaration public const LatentStylesValues Medium_Grid_3_Accent_3 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_4 Declaration public const LatentStylesValues Medium_Grid_3_Accent_4 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_5 Declaration public const LatentStylesValues Medium_Grid_3_Accent_5 Field Value Type Description LatentStylesValues Medium_Grid_3_Accent_6 Declaration public const LatentStylesValues Medium_Grid_3_Accent_6 Field Value Type Description LatentStylesValues Medium_List_1 Declaration public const LatentStylesValues Medium_List_1 Field Value Type Description LatentStylesValues Medium_List_1_Accent_1 Declaration public const LatentStylesValues Medium_List_1_Accent_1 Field Value Type Description LatentStylesValues Medium_List_1_Accent_2 Declaration public const LatentStylesValues Medium_List_1_Accent_2 Field Value Type Description LatentStylesValues Medium_List_1_Accent_3 Declaration public const LatentStylesValues Medium_List_1_Accent_3 Field Value Type Description LatentStylesValues Medium_List_1_Accent_4 Declaration public const LatentStylesValues Medium_List_1_Accent_4 Field Value Type Description LatentStylesValues Medium_List_1_Accent_5 Declaration public const LatentStylesValues Medium_List_1_Accent_5 Field Value Type Description LatentStylesValues Medium_List_1_Accent_6 Declaration public const LatentStylesValues Medium_List_1_Accent_6 Field Value Type Description LatentStylesValues Medium_List_2 Declaration public const LatentStylesValues Medium_List_2 Field Value Type Description LatentStylesValues Medium_List_2_Accent_1 Declaration public const LatentStylesValues Medium_List_2_Accent_1 Field Value Type Description LatentStylesValues Medium_List_2_Accent_2 Declaration public const LatentStylesValues Medium_List_2_Accent_2 Field Value Type Description LatentStylesValues Medium_List_2_Accent_3 Declaration public const LatentStylesValues Medium_List_2_Accent_3 Field Value Type Description LatentStylesValues Medium_List_2_Accent_4 Declaration public const LatentStylesValues Medium_List_2_Accent_4 Field Value Type Description LatentStylesValues Medium_List_2_Accent_5 Declaration public const LatentStylesValues Medium_List_2_Accent_5 Field Value Type Description LatentStylesValues Medium_List_2_Accent_6 Declaration public const LatentStylesValues Medium_List_2_Accent_6 Field Value Type Description LatentStylesValues Medium_Shading_1 Declaration public const LatentStylesValues Medium_Shading_1 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_1 Declaration public const LatentStylesValues Medium_Shading_1_Accent_1 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_2 Declaration public const LatentStylesValues Medium_Shading_1_Accent_2 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_3 Declaration public const LatentStylesValues Medium_Shading_1_Accent_3 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_4 Declaration public const LatentStylesValues Medium_Shading_1_Accent_4 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_5 Declaration public const LatentStylesValues Medium_Shading_1_Accent_5 Field Value Type Description LatentStylesValues Medium_Shading_1_Accent_6 Declaration public const LatentStylesValues Medium_Shading_1_Accent_6 Field Value Type Description LatentStylesValues Medium_Shading_2 Declaration public const LatentStylesValues Medium_Shading_2 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_1 Declaration public const LatentStylesValues Medium_Shading_2_Accent_1 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_2 Declaration public const LatentStylesValues Medium_Shading_2_Accent_2 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_3 Declaration public const LatentStylesValues Medium_Shading_2_Accent_3 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_4 Declaration public const LatentStylesValues Medium_Shading_2_Accent_4 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_5 Declaration public const LatentStylesValues Medium_Shading_2_Accent_5 Field Value Type Description LatentStylesValues Medium_Shading_2_Accent_6 Declaration public const LatentStylesValues Medium_Shading_2_Accent_6 Field Value Type Description LatentStylesValues Message_Header Declaration public const LatentStylesValues Message_Header Field Value Type Description LatentStylesValues No_List Declaration public const LatentStylesValues No_List Field Value Type Description LatentStylesValues No_Spacing Declaration public const LatentStylesValues No_Spacing Field Value Type Description LatentStylesValues Normal Declaration public const LatentStylesValues Normal Field Value Type Description LatentStylesValues Normal_Indent Declaration public const LatentStylesValues Normal_Indent Field Value Type Description LatentStylesValues Normal_Table Declaration public const LatentStylesValues Normal_Table Field Value Type Description LatentStylesValues Normal_Web Declaration public const LatentStylesValues Normal_Web Field Value Type Description LatentStylesValues Note_Heading Declaration public const LatentStylesValues Note_Heading Field Value Type Description LatentStylesValues Outline_List_1 Declaration public const LatentStylesValues Outline_List_1 Field Value Type Description LatentStylesValues Outline_List_2 Declaration public const LatentStylesValues Outline_List_2 Field Value Type Description LatentStylesValues Outline_List_3 Declaration public const LatentStylesValues Outline_List_3 Field Value Type Description LatentStylesValues page_number Declaration public const LatentStylesValues page_number Field Value Type Description LatentStylesValues Placeholder_Text Declaration public const LatentStylesValues Placeholder_Text Field Value Type Description LatentStylesValues Plain_Text Declaration public const LatentStylesValues Plain_Text Field Value Type Description LatentStylesValues Quote Declaration public const LatentStylesValues Quote Field Value Type Description LatentStylesValues Revision Declaration public const LatentStylesValues Revision Field Value Type Description LatentStylesValues Salutation Declaration public const LatentStylesValues Salutation Field Value Type Description LatentStylesValues Signature Declaration public const LatentStylesValues Signature Field Value Type Description LatentStylesValues Strong Declaration public const LatentStylesValues Strong Field Value Type Description LatentStylesValues Subtitle Declaration public const LatentStylesValues Subtitle Field Value Type Description LatentStylesValues Table_3D_effects_1 Declaration public const LatentStylesValues Table_3D_effects_1 Field Value Type Description LatentStylesValues Table_3D_effects_2 Declaration public const LatentStylesValues Table_3D_effects_2 Field Value Type Description LatentStylesValues Table_3D_effects_3 Declaration public const LatentStylesValues Table_3D_effects_3 Field Value Type Description LatentStylesValues Table_Classic_1 Declaration public const LatentStylesValues Table_Classic_1 Field Value Type Description LatentStylesValues Table_Classic_2 Declaration public const LatentStylesValues Table_Classic_2 Field Value Type Description LatentStylesValues Table_Classic_3 Declaration public const LatentStylesValues Table_Classic_3 Field Value Type Description LatentStylesValues Table_Classic_4 Declaration public const LatentStylesValues Table_Classic_4 Field Value Type Description LatentStylesValues Table_Colorful_1 Declaration public const LatentStylesValues Table_Colorful_1 Field Value Type Description LatentStylesValues Table_Colorful_2 Declaration public const LatentStylesValues Table_Colorful_2 Field Value Type Description LatentStylesValues Table_Colorful_3 Declaration public const LatentStylesValues Table_Colorful_3 Field Value Type Description LatentStylesValues Table_Columns_1 Declaration public const LatentStylesValues Table_Columns_1 Field Value Type Description LatentStylesValues Table_Columns_2 Declaration public const LatentStylesValues Table_Columns_2 Field Value Type Description LatentStylesValues Table_Columns_3 Declaration public const LatentStylesValues Table_Columns_3 Field Value Type Description LatentStylesValues Table_Columns_4 Declaration public const LatentStylesValues Table_Columns_4 Field Value Type Description LatentStylesValues Table_Columns_5 Declaration public const LatentStylesValues Table_Columns_5 Field Value Type Description LatentStylesValues Table_Contemporary Declaration public const LatentStylesValues Table_Contemporary Field Value Type Description LatentStylesValues Table_Elegant Declaration public const LatentStylesValues Table_Elegant Field Value Type Description LatentStylesValues Table_Grid Declaration public const LatentStylesValues Table_Grid Field Value Type Description LatentStylesValues Table_Grid_1 Declaration public const LatentStylesValues Table_Grid_1 Field Value Type Description LatentStylesValues Table_Grid_2 Declaration public const LatentStylesValues Table_Grid_2 Field Value Type Description LatentStylesValues Table_Grid_3 Declaration public const LatentStylesValues Table_Grid_3 Field Value Type Description LatentStylesValues Table_Grid_4 Declaration public const LatentStylesValues Table_Grid_4 Field Value Type Description LatentStylesValues Table_Grid_5 Declaration public const LatentStylesValues Table_Grid_5 Field Value Type Description LatentStylesValues Table_Grid_6 Declaration public const LatentStylesValues Table_Grid_6 Field Value Type Description LatentStylesValues Table_Grid_7 Declaration public const LatentStylesValues Table_Grid_7 Field Value Type Description LatentStylesValues Table_Grid_8 Declaration public const LatentStylesValues Table_Grid_8 Field Value Type Description LatentStylesValues Table_List_1 Declaration public const LatentStylesValues Table_List_1 Field Value Type Description LatentStylesValues Table_List_2 Declaration public const LatentStylesValues Table_List_2 Field Value Type Description LatentStylesValues Table_List_3 Declaration public const LatentStylesValues Table_List_3 Field Value Type Description LatentStylesValues Table_List_4 Declaration public const LatentStylesValues Table_List_4 Field Value Type Description LatentStylesValues Table_List_5 Declaration public const LatentStylesValues Table_List_5 Field Value Type Description LatentStylesValues Table_List_6 Declaration public const LatentStylesValues Table_List_6 Field Value Type Description LatentStylesValues Table_List_7 Declaration public const LatentStylesValues Table_List_7 Field Value Type Description LatentStylesValues Table_List_8 Declaration public const LatentStylesValues Table_List_8 Field Value Type Description LatentStylesValues table_of_authorities Declaration public const LatentStylesValues table_of_authorities Field Value Type Description LatentStylesValues table_of_figures Declaration public const LatentStylesValues table_of_figures Field Value Type Description LatentStylesValues Table_Professional Declaration public const LatentStylesValues Table_Professional Field Value Type Description LatentStylesValues Table_Simple_1 Declaration public const LatentStylesValues Table_Simple_1 Field Value Type Description LatentStylesValues Table_Simple_2 Declaration public const LatentStylesValues Table_Simple_2 Field Value Type Description LatentStylesValues Table_Simple_3 Declaration public const LatentStylesValues Table_Simple_3 Field Value Type Description LatentStylesValues Table_Subtle_1 Declaration public const LatentStylesValues Table_Subtle_1 Field Value Type Description LatentStylesValues Table_Subtle_2 Declaration public const LatentStylesValues Table_Subtle_2 Field Value Type Description LatentStylesValues Table_Theme Declaration public const LatentStylesValues Table_Theme Field Value Type Description LatentStylesValues Table_Web_1 Declaration public const LatentStylesValues Table_Web_1 Field Value Type Description LatentStylesValues Table_Web_2 Declaration public const LatentStylesValues Table_Web_2 Field Value Type Description LatentStylesValues Table_Web_3 Declaration public const LatentStylesValues Table_Web_3 Field Value Type Description LatentStylesValues Title Declaration public const LatentStylesValues Title Field Value Type Description LatentStylesValues toa_heading Declaration public const LatentStylesValues toa_heading Field Value Type Description LatentStylesValues toc_1 Declaration public const LatentStylesValues toc_1 Field Value Type Description LatentStylesValues toc_2 Declaration public const LatentStylesValues toc_2 Field Value Type Description LatentStylesValues toc_3 Declaration public const LatentStylesValues toc_3 Field Value Type Description LatentStylesValues toc_4 Declaration public const LatentStylesValues toc_4 Field Value Type Description LatentStylesValues toc_5 Declaration public const LatentStylesValues toc_5 Field Value Type Description LatentStylesValues toc_6 Declaration public const LatentStylesValues toc_6 Field Value Type Description LatentStylesValues toc_7 Declaration public const LatentStylesValues toc_7 Field Value Type Description LatentStylesValues toc_8 Declaration public const LatentStylesValues toc_8 Field Value Type Description LatentStylesValues toc_9 Declaration public const LatentStylesValues toc_9 Field Value Type Description LatentStylesValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.LineCapValues.html": {
    "href": "api/IronWord.Models.Enums.LineCapValues.html",
    "title": "Class LineCapValues | C# Word API | IronWord",
    "keywords": "Class LineCapValues Inheritance System.Object LineCapValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class LineCapValues : Enum Fields Flat Declaration public const LineCapValues Flat Field Value Type Description LineCapValues Round Declaration public const LineCapValues Round Field Value Type Description LineCapValues Square Declaration public const LineCapValues Square Field Value Type Description LineCapValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.LineSpacingRuleValues.html": {
    "href": "api/IronWord.Models.Enums.LineSpacingRuleValues.html",
    "title": "Class LineSpacingRuleValues | C# Word API | IronWord",
    "keywords": "Class LineSpacingRuleValues Inheritance System.Object LineSpacingRuleValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class LineSpacingRuleValues : Enum Fields AtLeast Declaration public const LineSpacingRuleValues AtLeast Field Value Type Description LineSpacingRuleValues Auto Declaration public const LineSpacingRuleValues Auto Field Value Type Description LineSpacingRuleValues Exact Declaration public const LineSpacingRuleValues Exact Field Value Type Description LineSpacingRuleValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.NumberFormatValues.html": {
    "href": "api/IronWord.Models.Enums.NumberFormatValues.html",
    "title": "Class NumberFormatValues | C# Word API | IronWord",
    "keywords": "Class NumberFormatValues Inheritance System.Object NumberFormatValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class NumberFormatValues : Enum Fields Aiueo Declaration public const NumberFormatValues Aiueo Field Value Type Description NumberFormatValues AiueoFullWidth Declaration public const NumberFormatValues AiueoFullWidth Field Value Type Description NumberFormatValues ArabicAbjad Declaration public const NumberFormatValues ArabicAbjad Field Value Type Description NumberFormatValues ArabicAlpha Declaration public const NumberFormatValues ArabicAlpha Field Value Type Description NumberFormatValues BahtText Declaration public const NumberFormatValues BahtText Field Value Type Description NumberFormatValues Bullet Declaration public const NumberFormatValues Bullet Field Value Type Description NumberFormatValues CardinalText Declaration public const NumberFormatValues CardinalText Field Value Type Description NumberFormatValues Chicago Declaration public const NumberFormatValues Chicago Field Value Type Description NumberFormatValues ChineseCounting Declaration public const NumberFormatValues ChineseCounting Field Value Type Description NumberFormatValues ChineseCountingThousand Declaration public const NumberFormatValues ChineseCountingThousand Field Value Type Description NumberFormatValues ChineseLegalSimplified Declaration public const NumberFormatValues ChineseLegalSimplified Field Value Type Description NumberFormatValues Chosung Declaration public const NumberFormatValues Chosung Field Value Type Description NumberFormatValues Custom Declaration public const NumberFormatValues Custom Field Value Type Description NumberFormatValues Decimal Declaration public const NumberFormatValues Decimal Field Value Type Description NumberFormatValues DecimalEnclosedCircle Declaration public const NumberFormatValues DecimalEnclosedCircle Field Value Type Description NumberFormatValues DecimalEnclosedCircleChinese Declaration public const NumberFormatValues DecimalEnclosedCircleChinese Field Value Type Description NumberFormatValues DecimalEnclosedFullstop Declaration public const NumberFormatValues DecimalEnclosedFullstop Field Value Type Description NumberFormatValues DecimalEnclosedParen Declaration public const NumberFormatValues DecimalEnclosedParen Field Value Type Description NumberFormatValues DecimalFullWidth Declaration public const NumberFormatValues DecimalFullWidth Field Value Type Description NumberFormatValues DecimalFullWidth2 Declaration public const NumberFormatValues DecimalFullWidth2 Field Value Type Description NumberFormatValues DecimalHalfWidth Declaration public const NumberFormatValues DecimalHalfWidth Field Value Type Description NumberFormatValues DecimalZero Declaration public const NumberFormatValues DecimalZero Field Value Type Description NumberFormatValues DollarText Declaration public const NumberFormatValues DollarText Field Value Type Description NumberFormatValues Ganada Declaration public const NumberFormatValues Ganada Field Value Type Description NumberFormatValues Hebrew1 Declaration public const NumberFormatValues Hebrew1 Field Value Type Description NumberFormatValues Hebrew2 Declaration public const NumberFormatValues Hebrew2 Field Value Type Description NumberFormatValues Hex Declaration public const NumberFormatValues Hex Field Value Type Description NumberFormatValues HindiConsonants Declaration public const NumberFormatValues HindiConsonants Field Value Type Description NumberFormatValues HindiCounting Declaration public const NumberFormatValues HindiCounting Field Value Type Description NumberFormatValues HindiNumbers Declaration public const NumberFormatValues HindiNumbers Field Value Type Description NumberFormatValues HindiVowels Declaration public const NumberFormatValues HindiVowels Field Value Type Description NumberFormatValues IdeographDigital Declaration public const NumberFormatValues IdeographDigital Field Value Type Description NumberFormatValues IdeographEnclosedCircle Declaration public const NumberFormatValues IdeographEnclosedCircle Field Value Type Description NumberFormatValues IdeographLegalTraditional Declaration public const NumberFormatValues IdeographLegalTraditional Field Value Type Description NumberFormatValues IdeographTraditional Declaration public const NumberFormatValues IdeographTraditional Field Value Type Description NumberFormatValues IdeographZodiac Declaration public const NumberFormatValues IdeographZodiac Field Value Type Description NumberFormatValues IdeographZodiacTraditional Declaration public const NumberFormatValues IdeographZodiacTraditional Field Value Type Description NumberFormatValues Iroha Declaration public const NumberFormatValues Iroha Field Value Type Description NumberFormatValues IrohaFullWidth Declaration public const NumberFormatValues IrohaFullWidth Field Value Type Description NumberFormatValues JapaneseCounting Declaration public const NumberFormatValues JapaneseCounting Field Value Type Description NumberFormatValues JapaneseDigitalTenThousand Declaration public const NumberFormatValues JapaneseDigitalTenThousand Field Value Type Description NumberFormatValues JapaneseLegal Declaration public const NumberFormatValues JapaneseLegal Field Value Type Description NumberFormatValues KoreanCounting Declaration public const NumberFormatValues KoreanCounting Field Value Type Description NumberFormatValues KoreanDigital Declaration public const NumberFormatValues KoreanDigital Field Value Type Description NumberFormatValues KoreanDigital2 Declaration public const NumberFormatValues KoreanDigital2 Field Value Type Description NumberFormatValues KoreanLegal Declaration public const NumberFormatValues KoreanLegal Field Value Type Description NumberFormatValues LowerLetter Declaration public const NumberFormatValues LowerLetter Field Value Type Description NumberFormatValues LowerRoman Declaration public const NumberFormatValues LowerRoman Field Value Type Description NumberFormatValues None Declaration public const NumberFormatValues None Field Value Type Description NumberFormatValues NumberInDash Declaration public const NumberFormatValues NumberInDash Field Value Type Description NumberFormatValues Ordinal Declaration public const NumberFormatValues Ordinal Field Value Type Description NumberFormatValues OrdinalText Declaration public const NumberFormatValues OrdinalText Field Value Type Description NumberFormatValues RussianLower Declaration public const NumberFormatValues RussianLower Field Value Type Description NumberFormatValues RussianUpper Declaration public const NumberFormatValues RussianUpper Field Value Type Description NumberFormatValues TaiwaneseCounting Declaration public const NumberFormatValues TaiwaneseCounting Field Value Type Description NumberFormatValues TaiwaneseCountingThousand Declaration public const NumberFormatValues TaiwaneseCountingThousand Field Value Type Description NumberFormatValues TaiwaneseDigital Declaration public const NumberFormatValues TaiwaneseDigital Field Value Type Description NumberFormatValues ThaiCounting Declaration public const NumberFormatValues ThaiCounting Field Value Type Description NumberFormatValues ThaiLetters Declaration public const NumberFormatValues ThaiLetters Field Value Type Description NumberFormatValues ThaiNumbers Declaration public const NumberFormatValues ThaiNumbers Field Value Type Description NumberFormatValues UpperLetter Declaration public const NumberFormatValues UpperLetter Field Value Type Description NumberFormatValues UpperRoman Declaration public const NumberFormatValues UpperRoman Field Value Type Description NumberFormatValues value__ Declaration public int value__ Field Value Type Description System.Int32 VietnameseCounting Declaration public const NumberFormatValues VietnameseCounting Field Value Type Description NumberFormatValues"
  },
  "api/IronWord.Models.Enums.PageNumberStyle.html": {
    "href": "api/IronWord.Models.Enums.PageNumberStyle.html",
    "title": "Class PageNumberStyle | C# Word API | IronWord",
    "keywords": "Class PageNumberStyle Inheritance System.Object PageNumberStyle Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PageNumberStyle : Enum Fields Arabic Declaration public const PageNumberStyle Arabic Field Value Type Description PageNumberStyle None Declaration public const PageNumberStyle None Field Value Type Description PageNumberStyle Roman Declaration public const PageNumberStyle Roman Field Value Type Description PageNumberStyle value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.PageOrientation.html": {
    "href": "api/IronWord.Models.Enums.PageOrientation.html",
    "title": "Class PageOrientation | C# Word API | IronWord",
    "keywords": "Class PageOrientation Inheritance System.Object PageOrientation Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PageOrientation : Enum Fields Landscape Declaration public const PageOrientation Landscape Field Value Type Description PageOrientation Portrait Declaration public const PageOrientation Portrait Field Value Type Description PageOrientation value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.PaperSize.html": {
    "href": "api/IronWord.Models.Enums.PaperSize.html",
    "title": "Class PaperSize | C# Word API | IronWord",
    "keywords": "Class PaperSize Inheritance System.Object PaperSize Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PaperSize : Enum Fields A4 Declaration public const PaperSize A4 Field Value Type Description PaperSize A5 Declaration public const PaperSize A5 Field Value Type Description PaperSize Custom Declaration public const PaperSize Custom Field Value Type Description PaperSize Legal Declaration public const PaperSize Legal Field Value Type Description PaperSize Letter Declaration public const PaperSize Letter Field Value Type Description PaperSize value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.PenAlignmentValues.html": {
    "href": "api/IronWord.Models.Enums.PenAlignmentValues.html",
    "title": "Class PenAlignmentValues | C# Word API | IronWord",
    "keywords": "Class PenAlignmentValues Inheritance System.Object PenAlignmentValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PenAlignmentValues : Enum Fields Center Declaration public const PenAlignmentValues Center Field Value Type Description PenAlignmentValues Inset Declaration public const PenAlignmentValues Inset Field Value Type Description PenAlignmentValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.PresetLineDashValues.html": {
    "href": "api/IronWord.Models.Enums.PresetLineDashValues.html",
    "title": "Class PresetLineDashValues | C# Word API | IronWord",
    "keywords": "Class PresetLineDashValues Inheritance System.Object PresetLineDashValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PresetLineDashValues : Enum Fields Dash Declaration public const PresetLineDashValues Dash Field Value Type Description PresetLineDashValues DashDot Declaration public const PresetLineDashValues DashDot Field Value Type Description PresetLineDashValues Dot Declaration public const PresetLineDashValues Dot Field Value Type Description PresetLineDashValues LongDash Declaration public const PresetLineDashValues LongDash Field Value Type Description PresetLineDashValues LongDashDot Declaration public const PresetLineDashValues LongDashDot Field Value Type Description PresetLineDashValues LongDashDotDot Declaration public const PresetLineDashValues LongDashDotDot Field Value Type Description PresetLineDashValues Solid Declaration public const PresetLineDashValues Solid Field Value Type Description PresetLineDashValues SysDash Declaration public const PresetLineDashValues SysDash Field Value Type Description PresetLineDashValues SysDot Declaration public const PresetLineDashValues SysDot Field Value Type Description PresetLineDashValues SystemDashDot Declaration public const PresetLineDashValues SystemDashDot Field Value Type Description PresetLineDashValues SystemDashDotDot Declaration public const PresetLineDashValues SystemDashDotDot Field Value Type Description PresetLineDashValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.PresetMaterialTypeValues.html": {
    "href": "api/IronWord.Models.Enums.PresetMaterialTypeValues.html",
    "title": "Class PresetMaterialTypeValues | C# Word API | IronWord",
    "keywords": "Class PresetMaterialTypeValues Inheritance System.Object PresetMaterialTypeValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class PresetMaterialTypeValues : Enum Fields Clear Declaration public const PresetMaterialTypeValues Clear Field Value Type Description PresetMaterialTypeValues DarkEdge Declaration public const PresetMaterialTypeValues DarkEdge Field Value Type Description PresetMaterialTypeValues Flat Declaration public const PresetMaterialTypeValues Flat Field Value Type Description PresetMaterialTypeValues LegacyMatte Declaration public const PresetMaterialTypeValues LegacyMatte Field Value Type Description PresetMaterialTypeValues LegacyMetal Declaration public const PresetMaterialTypeValues LegacyMetal Field Value Type Description PresetMaterialTypeValues LegacyPlastic Declaration public const PresetMaterialTypeValues LegacyPlastic Field Value Type Description PresetMaterialTypeValues LegacyWireframe Declaration public const PresetMaterialTypeValues LegacyWireframe Field Value Type Description PresetMaterialTypeValues Matte Declaration public const PresetMaterialTypeValues Matte Field Value Type Description PresetMaterialTypeValues Metal Declaration public const PresetMaterialTypeValues Metal Field Value Type Description PresetMaterialTypeValues None Declaration public const PresetMaterialTypeValues None Field Value Type Description PresetMaterialTypeValues Plastic Declaration public const PresetMaterialTypeValues Plastic Field Value Type Description PresetMaterialTypeValues Powder Declaration public const PresetMaterialTypeValues Powder Field Value Type Description PresetMaterialTypeValues SoftEdge Declaration public const PresetMaterialTypeValues SoftEdge Field Value Type Description PresetMaterialTypeValues SoftMetal Declaration public const PresetMaterialTypeValues SoftMetal Field Value Type Description PresetMaterialTypeValues TranslucentPowder Declaration public const PresetMaterialTypeValues TranslucentPowder Field Value Type Description PresetMaterialTypeValues value__ Declaration public int value__ Field Value Type Description System.Int32 WarmMatte Declaration public const PresetMaterialTypeValues WarmMatte Field Value Type Description PresetMaterialTypeValues"
  },
  "api/IronWord.Models.Enums.ProtectionType.html": {
    "href": "api/IronWord.Models.Enums.ProtectionType.html",
    "title": "Class ProtectionType | C# Word API | IronWord",
    "keywords": "Class ProtectionType Inheritance System.Object ProtectionType Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ProtectionType : Enum Fields CommentsOnly Declaration public const ProtectionType CommentsOnly Field Value Type Description ProtectionType FormFilling Declaration public const ProtectionType FormFilling Field Value Type Description ProtectionType None Declaration public const ProtectionType None Field Value Type Description ProtectionType ReadOnly Declaration public const ProtectionType ReadOnly Field Value Type Description ProtectionType TrackChanges Declaration public const ProtectionType TrackChanges Field Value Type Description ProtectionType value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.RectangleAlignmentValues.html": {
    "href": "api/IronWord.Models.Enums.RectangleAlignmentValues.html",
    "title": "Class RectangleAlignmentValues | C# Word API | IronWord",
    "keywords": "Class RectangleAlignmentValues Inheritance System.Object RectangleAlignmentValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class RectangleAlignmentValues : Enum Fields Bottom Declaration public const RectangleAlignmentValues Bottom Field Value Type Description RectangleAlignmentValues BottomLeft Declaration public const RectangleAlignmentValues BottomLeft Field Value Type Description RectangleAlignmentValues BottomRight Declaration public const RectangleAlignmentValues BottomRight Field Value Type Description RectangleAlignmentValues Center Declaration public const RectangleAlignmentValues Center Field Value Type Description RectangleAlignmentValues Left Declaration public const RectangleAlignmentValues Left Field Value Type Description RectangleAlignmentValues None Declaration public const RectangleAlignmentValues None Field Value Type Description RectangleAlignmentValues Right Declaration public const RectangleAlignmentValues Right Field Value Type Description RectangleAlignmentValues Top Declaration public const RectangleAlignmentValues Top Field Value Type Description RectangleAlignmentValues TopLeft Declaration public const RectangleAlignmentValues TopLeft Field Value Type Description RectangleAlignmentValues TopRight Declaration public const RectangleAlignmentValues TopRight Field Value Type Description RectangleAlignmentValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.SchemeColorValues.html": {
    "href": "api/IronWord.Models.Enums.SchemeColorValues.html",
    "title": "Class SchemeColorValues | C# Word API | IronWord",
    "keywords": "Class SchemeColorValues Inheritance System.Object SchemeColorValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class SchemeColorValues : Enum Fields AdditionalBackgroundColor Declaration public const SchemeColorValues AdditionalBackgroundColor Field Value Type Description SchemeColorValues AdditionalTextColor Declaration public const SchemeColorValues AdditionalTextColor Field Value Type Description SchemeColorValues AutoColor Declaration public const SchemeColorValues AutoColor Field Value Type Description SchemeColorValues BackgroundColor Declaration public const SchemeColorValues BackgroundColor Field Value Type Description SchemeColorValues ExtraSchemeColor1 Declaration public const SchemeColorValues ExtraSchemeColor1 Field Value Type Description SchemeColorValues ExtraSchemeColor2 Declaration public const SchemeColorValues ExtraSchemeColor2 Field Value Type Description SchemeColorValues ExtraSchemeColor3 Declaration public const SchemeColorValues ExtraSchemeColor3 Field Value Type Description SchemeColorValues ExtraSchemeColor4 Declaration public const SchemeColorValues ExtraSchemeColor4 Field Value Type Description SchemeColorValues ExtraSchemeColor5 Declaration public const SchemeColorValues ExtraSchemeColor5 Field Value Type Description SchemeColorValues ExtraSchemeColor6 Declaration public const SchemeColorValues ExtraSchemeColor6 Field Value Type Description SchemeColorValues FollowedHyperlinkColor Declaration public const SchemeColorValues FollowedHyperlinkColor Field Value Type Description SchemeColorValues HyperlinkColor Declaration public const SchemeColorValues HyperlinkColor Field Value Type Description SchemeColorValues MainDarkColor1 Declaration public const SchemeColorValues MainDarkColor1 Field Value Type Description SchemeColorValues MainDarkColor2 Declaration public const SchemeColorValues MainDarkColor2 Field Value Type Description SchemeColorValues MainLightColor1 Declaration public const SchemeColorValues MainLightColor1 Field Value Type Description SchemeColorValues MainLightColor2 Declaration public const SchemeColorValues MainLightColor2 Field Value Type Description SchemeColorValues TextColor Declaration public const SchemeColorValues TextColor Field Value Type Description SchemeColorValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.ShadingPatternValues.html": {
    "href": "api/IronWord.Models.Enums.ShadingPatternValues.html",
    "title": "Class ShadingPatternValues | C# Word API | IronWord",
    "keywords": "Class ShadingPatternValues Inheritance System.Object ShadingPatternValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ShadingPatternValues : Enum Fields Clear Declaration public const ShadingPatternValues Clear Field Value Type Description ShadingPatternValues DiagCross Declaration public const ShadingPatternValues DiagCross Field Value Type Description ShadingPatternValues DiagStripe Declaration public const ShadingPatternValues DiagStripe Field Value Type Description ShadingPatternValues HorzStripe Declaration public const ShadingPatternValues HorzStripe Field Value Type Description ShadingPatternValues Percent_10 Declaration public const ShadingPatternValues Percent_10 Field Value Type Description ShadingPatternValues Percent_100 Declaration public const ShadingPatternValues Percent_100 Field Value Type Description ShadingPatternValues Percent_15 Declaration public const ShadingPatternValues Percent_15 Field Value Type Description ShadingPatternValues Percent_17_5 Declaration public const ShadingPatternValues Percent_17_5 Field Value Type Description ShadingPatternValues Percent_2_5 Declaration public const ShadingPatternValues Percent_2_5 Field Value Type Description ShadingPatternValues Percent_20 Declaration public const ShadingPatternValues Percent_20 Field Value Type Description ShadingPatternValues Percent_22_5 Declaration public const ShadingPatternValues Percent_22_5 Field Value Type Description ShadingPatternValues Percent_25 Declaration public const ShadingPatternValues Percent_25 Field Value Type Description ShadingPatternValues Percent_27_5 Declaration public const ShadingPatternValues Percent_27_5 Field Value Type Description ShadingPatternValues Percent_30 Declaration public const ShadingPatternValues Percent_30 Field Value Type Description ShadingPatternValues Percent_32_5 Declaration public const ShadingPatternValues Percent_32_5 Field Value Type Description ShadingPatternValues Percent_35 Declaration public const ShadingPatternValues Percent_35 Field Value Type Description ShadingPatternValues Percent_37_5 Declaration public const ShadingPatternValues Percent_37_5 Field Value Type Description ShadingPatternValues Percent_40 Declaration public const ShadingPatternValues Percent_40 Field Value Type Description ShadingPatternValues Percent_42_5 Declaration public const ShadingPatternValues Percent_42_5 Field Value Type Description ShadingPatternValues Percent_45 Declaration public const ShadingPatternValues Percent_45 Field Value Type Description ShadingPatternValues Percent_47_5 Declaration public const ShadingPatternValues Percent_47_5 Field Value Type Description ShadingPatternValues Percent_5 Declaration public const ShadingPatternValues Percent_5 Field Value Type Description ShadingPatternValues Percent_50 Declaration public const ShadingPatternValues Percent_50 Field Value Type Description ShadingPatternValues Percent_52_5 Declaration public const ShadingPatternValues Percent_52_5 Field Value Type Description ShadingPatternValues Percent_55 Declaration public const ShadingPatternValues Percent_55 Field Value Type Description ShadingPatternValues Percent_57_5 Declaration public const ShadingPatternValues Percent_57_5 Field Value Type Description ShadingPatternValues Percent_60 Declaration public const ShadingPatternValues Percent_60 Field Value Type Description ShadingPatternValues Percent_62_5 Declaration public const ShadingPatternValues Percent_62_5 Field Value Type Description ShadingPatternValues Percent_65 Declaration public const ShadingPatternValues Percent_65 Field Value Type Description ShadingPatternValues Percent_67_5 Declaration public const ShadingPatternValues Percent_67_5 Field Value Type Description ShadingPatternValues Percent_7_5 Declaration public const ShadingPatternValues Percent_7_5 Field Value Type Description ShadingPatternValues Percent_70 Declaration public const ShadingPatternValues Percent_70 Field Value Type Description ShadingPatternValues Percent_72_5 Declaration public const ShadingPatternValues Percent_72_5 Field Value Type Description ShadingPatternValues Percent_75 Declaration public const ShadingPatternValues Percent_75 Field Value Type Description ShadingPatternValues Percent_77_5 Declaration public const ShadingPatternValues Percent_77_5 Field Value Type Description ShadingPatternValues Percent_80 Declaration public const ShadingPatternValues Percent_80 Field Value Type Description ShadingPatternValues Percent_82_5 Declaration public const ShadingPatternValues Percent_82_5 Field Value Type Description ShadingPatternValues Percent_85 Declaration public const ShadingPatternValues Percent_85 Field Value Type Description ShadingPatternValues Percent_87_5 Declaration public const ShadingPatternValues Percent_87_5 Field Value Type Description ShadingPatternValues Percent_90 Declaration public const ShadingPatternValues Percent_90 Field Value Type Description ShadingPatternValues Percent_95 Declaration public const ShadingPatternValues Percent_95 Field Value Type Description ShadingPatternValues ReverseDiagStripe Declaration public const ShadingPatternValues ReverseDiagStripe Field Value Type Description ShadingPatternValues Solid Declaration public const ShadingPatternValues Solid Field Value Type Description ShadingPatternValues ThickDiagCross Declaration public const ShadingPatternValues ThickDiagCross Field Value Type Description ShadingPatternValues ThinDiagCross Declaration public const ShadingPatternValues ThinDiagCross Field Value Type Description ShadingPatternValues ThinDiagCross_1 Declaration public const ShadingPatternValues ThinDiagCross_1 Field Value Type Description ShadingPatternValues ThinDiagCrosshatch Declaration public const ShadingPatternValues ThinDiagCrosshatch Field Value Type Description ShadingPatternValues ThinDiagCrosshatch_1 Declaration public const ShadingPatternValues ThinDiagCrosshatch_1 Field Value Type Description ShadingPatternValues ThinDiagStripe Declaration public const ShadingPatternValues ThinDiagStripe Field Value Type Description ShadingPatternValues ThinDiagStripe_1 Declaration public const ShadingPatternValues ThinDiagStripe_1 Field Value Type Description ShadingPatternValues ThinHorzCross Declaration public const ShadingPatternValues ThinHorzCross Field Value Type Description ShadingPatternValues ThinHorzStripe Declaration public const ShadingPatternValues ThinHorzStripe Field Value Type Description ShadingPatternValues ThinHorzStripe_1 Declaration public const ShadingPatternValues ThinHorzStripe_1 Field Value Type Description ShadingPatternValues ThinReverseDiagStripe Declaration public const ShadingPatternValues ThinReverseDiagStripe Field Value Type Description ShadingPatternValues ThinReverseDiagStripe_1 Declaration public const ShadingPatternValues ThinReverseDiagStripe_1 Field Value Type Description ShadingPatternValues ThinVertStripe Declaration public const ShadingPatternValues ThinVertStripe Field Value Type Description ShadingPatternValues ThinVertStripe_1 Declaration public const ShadingPatternValues ThinVertStripe_1 Field Value Type Description ShadingPatternValues value__ Declaration public int value__ Field Value Type Description System.Int32 VertStripe Declaration public const ShadingPatternValues VertStripe Field Value Type Description ShadingPatternValues"
  },
  "api/IronWord.Models.Enums.ShapeType.html": {
    "href": "api/IronWord.Models.Enums.ShapeType.html",
    "title": "Class ShapeType | C# Word API | IronWord",
    "keywords": "Class ShapeType Inheritance System.Object ShapeType Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ShapeType : Enum Fields AccentBorderCallout1 Declaration public const ShapeType AccentBorderCallout1 Field Value Type Description ShapeType AccentBorderCallout2 Declaration public const ShapeType AccentBorderCallout2 Field Value Type Description ShapeType AccentBorderCallout3 Declaration public const ShapeType AccentBorderCallout3 Field Value Type Description ShapeType AccentCallout1 Declaration public const ShapeType AccentCallout1 Field Value Type Description ShapeType AccentCallout2 Declaration public const ShapeType AccentCallout2 Field Value Type Description ShapeType AccentCallout3 Declaration public const ShapeType AccentCallout3 Field Value Type Description ShapeType ActionButtonBackPrevious Declaration public const ShapeType ActionButtonBackPrevious Field Value Type Description ShapeType ActionButtonBeginning Declaration public const ShapeType ActionButtonBeginning Field Value Type Description ShapeType ActionButtonBlank Declaration public const ShapeType ActionButtonBlank Field Value Type Description ShapeType ActionButtonDocument Declaration public const ShapeType ActionButtonDocument Field Value Type Description ShapeType ActionButtonEnd Declaration public const ShapeType ActionButtonEnd Field Value Type Description ShapeType ActionButtonForwardNext Declaration public const ShapeType ActionButtonForwardNext Field Value Type Description ShapeType ActionButtonHelp Declaration public const ShapeType ActionButtonHelp Field Value Type Description ShapeType ActionButtonHome Declaration public const ShapeType ActionButtonHome Field Value Type Description ShapeType ActionButtonInformation Declaration public const ShapeType ActionButtonInformation Field Value Type Description ShapeType ActionButtonMovie Declaration public const ShapeType ActionButtonMovie Field Value Type Description ShapeType ActionButtonReturn Declaration public const ShapeType ActionButtonReturn Field Value Type Description ShapeType ActionButtonSound Declaration public const ShapeType ActionButtonSound Field Value Type Description ShapeType Arc Declaration public const ShapeType Arc Field Value Type Description ShapeType BentArrow Declaration public const ShapeType BentArrow Field Value Type Description ShapeType BentConnector2 Declaration public const ShapeType BentConnector2 Field Value Type Description ShapeType BentConnector3 Declaration public const ShapeType BentConnector3 Field Value Type Description ShapeType BentConnector4 Declaration public const ShapeType BentConnector4 Field Value Type Description ShapeType BentConnector5 Declaration public const ShapeType BentConnector5 Field Value Type Description ShapeType BentUpArrow Declaration public const ShapeType BentUpArrow Field Value Type Description ShapeType Bevel Declaration public const ShapeType Bevel Field Value Type Description ShapeType BlockArc Declaration public const ShapeType BlockArc Field Value Type Description ShapeType BorderCallout1 Declaration public const ShapeType BorderCallout1 Field Value Type Description ShapeType BorderCallout2 Declaration public const ShapeType BorderCallout2 Field Value Type Description ShapeType BorderCallout3 Declaration public const ShapeType BorderCallout3 Field Value Type Description ShapeType BracePair Declaration public const ShapeType BracePair Field Value Type Description ShapeType BracketPair Declaration public const ShapeType BracketPair Field Value Type Description ShapeType Callout1 Declaration public const ShapeType Callout1 Field Value Type Description ShapeType Callout2 Declaration public const ShapeType Callout2 Field Value Type Description ShapeType Callout3 Declaration public const ShapeType Callout3 Field Value Type Description ShapeType Can Declaration public const ShapeType Can Field Value Type Description ShapeType ChartPlus Declaration public const ShapeType ChartPlus Field Value Type Description ShapeType ChartStar Declaration public const ShapeType ChartStar Field Value Type Description ShapeType ChartX Declaration public const ShapeType ChartX Field Value Type Description ShapeType Chevron Declaration public const ShapeType Chevron Field Value Type Description ShapeType Chord Declaration public const ShapeType Chord Field Value Type Description ShapeType CircularArrow Declaration public const ShapeType CircularArrow Field Value Type Description ShapeType Cloud Declaration public const ShapeType Cloud Field Value Type Description ShapeType CloudCallout Declaration public const ShapeType CloudCallout Field Value Type Description ShapeType Corner Declaration public const ShapeType Corner Field Value Type Description ShapeType CornerTabs Declaration public const ShapeType CornerTabs Field Value Type Description ShapeType Cube Declaration public const ShapeType Cube Field Value Type Description ShapeType CurvedConnector2 Declaration public const ShapeType CurvedConnector2 Field Value Type Description ShapeType CurvedConnector3 Declaration public const ShapeType CurvedConnector3 Field Value Type Description ShapeType CurvedConnector4 Declaration public const ShapeType CurvedConnector4 Field Value Type Description ShapeType CurvedConnector5 Declaration public const ShapeType CurvedConnector5 Field Value Type Description ShapeType CurvedDownArrow Declaration public const ShapeType CurvedDownArrow Field Value Type Description ShapeType CurvedLeftArrow Declaration public const ShapeType CurvedLeftArrow Field Value Type Description ShapeType CurvedRightArrow Declaration public const ShapeType CurvedRightArrow Field Value Type Description ShapeType CurvedUpArrow Declaration public const ShapeType CurvedUpArrow Field Value Type Description ShapeType Decagon Declaration public const ShapeType Decagon Field Value Type Description ShapeType DiagonalStripe Declaration public const ShapeType DiagonalStripe Field Value Type Description ShapeType Diamond Declaration public const ShapeType Diamond Field Value Type Description ShapeType Dodecagon Declaration public const ShapeType Dodecagon Field Value Type Description ShapeType Donut Declaration public const ShapeType Donut Field Value Type Description ShapeType DoubleWave Declaration public const ShapeType DoubleWave Field Value Type Description ShapeType DownArrow Declaration public const ShapeType DownArrow Field Value Type Description ShapeType DownArrowCallout Declaration public const ShapeType DownArrowCallout Field Value Type Description ShapeType Ellipse Declaration public const ShapeType Ellipse Field Value Type Description ShapeType EllipseRibbon Declaration public const ShapeType EllipseRibbon Field Value Type Description ShapeType EllipseRibbon2 Declaration public const ShapeType EllipseRibbon2 Field Value Type Description ShapeType FlowChartAlternateProcess Declaration public const ShapeType FlowChartAlternateProcess Field Value Type Description ShapeType FlowChartCollate Declaration public const ShapeType FlowChartCollate Field Value Type Description ShapeType FlowChartConnector Declaration public const ShapeType FlowChartConnector Field Value Type Description ShapeType FlowChartDecision Declaration public const ShapeType FlowChartDecision Field Value Type Description ShapeType FlowChartDelay Declaration public const ShapeType FlowChartDelay Field Value Type Description ShapeType FlowChartDisplay Declaration public const ShapeType FlowChartDisplay Field Value Type Description ShapeType FlowChartDocument Declaration public const ShapeType FlowChartDocument Field Value Type Description ShapeType FlowChartExtract Declaration public const ShapeType FlowChartExtract Field Value Type Description ShapeType FlowChartInputOutput Declaration public const ShapeType FlowChartInputOutput Field Value Type Description ShapeType FlowChartInternalStorage Declaration public const ShapeType FlowChartInternalStorage Field Value Type Description ShapeType FlowChartMagneticDisk Declaration public const ShapeType FlowChartMagneticDisk Field Value Type Description ShapeType FlowChartMagneticDrum Declaration public const ShapeType FlowChartMagneticDrum Field Value Type Description ShapeType FlowChartMagneticTape Declaration public const ShapeType FlowChartMagneticTape Field Value Type Description ShapeType FlowChartManualInput Declaration public const ShapeType FlowChartManualInput Field Value Type Description ShapeType FlowChartManualOperation Declaration public const ShapeType FlowChartManualOperation Field Value Type Description ShapeType FlowChartMerge Declaration public const ShapeType FlowChartMerge Field Value Type Description ShapeType FlowChartMultidocument Declaration public const ShapeType FlowChartMultidocument Field Value Type Description ShapeType FlowChartOfflineStorage Declaration public const ShapeType FlowChartOfflineStorage Field Value Type Description ShapeType FlowChartOffpageConnector Declaration public const ShapeType FlowChartOffpageConnector Field Value Type Description ShapeType FlowChartOnlineStorage Declaration public const ShapeType FlowChartOnlineStorage Field Value Type Description ShapeType FlowChartOr Declaration public const ShapeType FlowChartOr Field Value Type Description ShapeType FlowChartPredefinedProcess Declaration public const ShapeType FlowChartPredefinedProcess Field Value Type Description ShapeType FlowChartPreparation Declaration public const ShapeType FlowChartPreparation Field Value Type Description ShapeType FlowChartProcess Declaration public const ShapeType FlowChartProcess Field Value Type Description ShapeType FlowChartPunchedCard Declaration public const ShapeType FlowChartPunchedCard Field Value Type Description ShapeType FlowChartPunchedTape Declaration public const ShapeType FlowChartPunchedTape Field Value Type Description ShapeType FlowChartSort Declaration public const ShapeType FlowChartSort Field Value Type Description ShapeType FlowChartSummingJunction Declaration public const ShapeType FlowChartSummingJunction Field Value Type Description ShapeType FlowChartTerminator Declaration public const ShapeType FlowChartTerminator Field Value Type Description ShapeType FoldedCorner Declaration public const ShapeType FoldedCorner Field Value Type Description ShapeType Frame Declaration public const ShapeType Frame Field Value Type Description ShapeType Funnel Declaration public const ShapeType Funnel Field Value Type Description ShapeType Gear6 Declaration public const ShapeType Gear6 Field Value Type Description ShapeType Gear9 Declaration public const ShapeType Gear9 Field Value Type Description ShapeType HalfFrame Declaration public const ShapeType HalfFrame Field Value Type Description ShapeType Heart Declaration public const ShapeType Heart Field Value Type Description ShapeType Heptagon Declaration public const ShapeType Heptagon Field Value Type Description ShapeType Hexagon Declaration public const ShapeType Hexagon Field Value Type Description ShapeType HomePlate Declaration public const ShapeType HomePlate Field Value Type Description ShapeType HorizontalScroll Declaration public const ShapeType HorizontalScroll Field Value Type Description ShapeType IrregularSeal1 Declaration public const ShapeType IrregularSeal1 Field Value Type Description ShapeType IrregularSeal2 Declaration public const ShapeType IrregularSeal2 Field Value Type Description ShapeType LeftArrow Declaration public const ShapeType LeftArrow Field Value Type Description ShapeType LeftArrowCallout Declaration public const ShapeType LeftArrowCallout Field Value Type Description ShapeType LeftBrace Declaration public const ShapeType LeftBrace Field Value Type Description ShapeType LeftBracket Declaration public const ShapeType LeftBracket Field Value Type Description ShapeType LeftCircularArrow Declaration public const ShapeType LeftCircularArrow Field Value Type Description ShapeType LeftRightArrow Declaration public const ShapeType LeftRightArrow Field Value Type Description ShapeType LeftRightArrowCallout Declaration public const ShapeType LeftRightArrowCallout Field Value Type Description ShapeType LeftRightCircularArrow Declaration public const ShapeType LeftRightCircularArrow Field Value Type Description ShapeType LeftRightRibbon Declaration public const ShapeType LeftRightRibbon Field Value Type Description ShapeType LeftRightUpArrow Declaration public const ShapeType LeftRightUpArrow Field Value Type Description ShapeType LeftUpArrow Declaration public const ShapeType LeftUpArrow Field Value Type Description ShapeType LightningBolt Declaration public const ShapeType LightningBolt Field Value Type Description ShapeType Line Declaration public const ShapeType Line Field Value Type Description ShapeType LineInverse Declaration public const ShapeType LineInverse Field Value Type Description ShapeType MathDivide Declaration public const ShapeType MathDivide Field Value Type Description ShapeType MathEqual Declaration public const ShapeType MathEqual Field Value Type Description ShapeType MathMinus Declaration public const ShapeType MathMinus Field Value Type Description ShapeType MathMultiply Declaration public const ShapeType MathMultiply Field Value Type Description ShapeType MathNotEqual Declaration public const ShapeType MathNotEqual Field Value Type Description ShapeType MathPlus Declaration public const ShapeType MathPlus Field Value Type Description ShapeType Moon Declaration public const ShapeType Moon Field Value Type Description ShapeType NonIsoscelesTrapezoid Declaration public const ShapeType NonIsoscelesTrapezoid Field Value Type Description ShapeType NoSmoking Declaration public const ShapeType NoSmoking Field Value Type Description ShapeType NotchedRightArrow Declaration public const ShapeType NotchedRightArrow Field Value Type Description ShapeType Octagon Declaration public const ShapeType Octagon Field Value Type Description ShapeType Parallelogram Declaration public const ShapeType Parallelogram Field Value Type Description ShapeType Pentagon Declaration public const ShapeType Pentagon Field Value Type Description ShapeType Pie Declaration public const ShapeType Pie Field Value Type Description ShapeType PieWedge Declaration public const ShapeType PieWedge Field Value Type Description ShapeType Plaque Declaration public const ShapeType Plaque Field Value Type Description ShapeType PlaqueTabs Declaration public const ShapeType PlaqueTabs Field Value Type Description ShapeType Plus Declaration public const ShapeType Plus Field Value Type Description ShapeType QuadArrow Declaration public const ShapeType QuadArrow Field Value Type Description ShapeType QuadArrowCallout Declaration public const ShapeType QuadArrowCallout Field Value Type Description ShapeType Rectangle Declaration public const ShapeType Rectangle Field Value Type Description ShapeType Ribbon Declaration public const ShapeType Ribbon Field Value Type Description ShapeType Ribbon2 Declaration public const ShapeType Ribbon2 Field Value Type Description ShapeType RightArrow Declaration public const ShapeType RightArrow Field Value Type Description ShapeType RightArrowCallout Declaration public const ShapeType RightArrowCallout Field Value Type Description ShapeType RightBrace Declaration public const ShapeType RightBrace Field Value Type Description ShapeType RightBracket Declaration public const ShapeType RightBracket Field Value Type Description ShapeType RightTriangle Declaration public const ShapeType RightTriangle Field Value Type Description ShapeType Round1Rectangle Declaration public const ShapeType Round1Rectangle Field Value Type Description ShapeType Round2DiagonalRectangle Declaration public const ShapeType Round2DiagonalRectangle Field Value Type Description ShapeType Round2SameRectangle Declaration public const ShapeType Round2SameRectangle Field Value Type Description ShapeType RoundRectangle Declaration public const ShapeType RoundRectangle Field Value Type Description ShapeType SmileyFace Declaration public const ShapeType SmileyFace Field Value Type Description ShapeType Snip1Rectangle Declaration public const ShapeType Snip1Rectangle Field Value Type Description ShapeType Snip2DiagonalRectangle Declaration public const ShapeType Snip2DiagonalRectangle Field Value Type Description ShapeType Snip2SameRectangle Declaration public const ShapeType Snip2SameRectangle Field Value Type Description ShapeType SnipRoundRectangle Declaration public const ShapeType SnipRoundRectangle Field Value Type Description ShapeType SquareTabs Declaration public const ShapeType SquareTabs Field Value Type Description ShapeType Star10 Declaration public const ShapeType Star10 Field Value Type Description ShapeType Star12 Declaration public const ShapeType Star12 Field Value Type Description ShapeType Star16 Declaration public const ShapeType Star16 Field Value Type Description ShapeType Star24 Declaration public const ShapeType Star24 Field Value Type Description ShapeType Star32 Declaration public const ShapeType Star32 Field Value Type Description ShapeType Star4 Declaration public const ShapeType Star4 Field Value Type Description ShapeType Star5 Declaration public const ShapeType Star5 Field Value Type Description ShapeType Star6 Declaration public const ShapeType Star6 Field Value Type Description ShapeType Star7 Declaration public const ShapeType Star7 Field Value Type Description ShapeType Star8 Declaration public const ShapeType Star8 Field Value Type Description ShapeType StraightConnector1 Declaration public const ShapeType StraightConnector1 Field Value Type Description ShapeType StripedRightArrow Declaration public const ShapeType StripedRightArrow Field Value Type Description ShapeType Sun Declaration public const ShapeType Sun Field Value Type Description ShapeType SwooshArrow Declaration public const ShapeType SwooshArrow Field Value Type Description ShapeType Teardrop Declaration public const ShapeType Teardrop Field Value Type Description ShapeType Trapezoid Declaration public const ShapeType Trapezoid Field Value Type Description ShapeType Triangle Declaration public const ShapeType Triangle Field Value Type Description ShapeType UpArrow Declaration public const ShapeType UpArrow Field Value Type Description ShapeType UpArrowCallout Declaration public const ShapeType UpArrowCallout Field Value Type Description ShapeType UpDownArrow Declaration public const ShapeType UpDownArrow Field Value Type Description ShapeType UpDownArrowCallout Declaration public const ShapeType UpDownArrowCallout Field Value Type Description ShapeType UTurnArrow Declaration public const ShapeType UTurnArrow Field Value Type Description ShapeType value__ Declaration public int value__ Field Value Type Description System.Int32 VerticalScroll Declaration public const ShapeType VerticalScroll Field Value Type Description ShapeType Wave Declaration public const ShapeType Wave Field Value Type Description ShapeType WedgeEllipseCallout Declaration public const ShapeType WedgeEllipseCallout Field Value Type Description ShapeType WedgeRectangleCallout Declaration public const ShapeType WedgeRectangleCallout Field Value Type Description ShapeType WedgeRoundRectangleCallout Declaration public const ShapeType WedgeRoundRectangleCallout Field Value Type Description ShapeType"
  },
  "api/IronWord.Models.Enums.StrikeValue.html": {
    "href": "api/IronWord.Models.Enums.StrikeValue.html",
    "title": "Class StrikeValue | C# Word API | IronWord",
    "keywords": "Class StrikeValue Inheritance System.Object StrikeValue Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class StrikeValue : Enum Fields DoubleStrike Declaration public const StrikeValue DoubleStrike Field Value Type Description StrikeValue None Declaration public const StrikeValue None Field Value Type Description StrikeValue Strike Declaration public const StrikeValue Strike Field Value Type Description StrikeValue value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.StrokeJoinStyleValues.html": {
    "href": "api/IronWord.Models.Enums.StrokeJoinStyleValues.html",
    "title": "Class StrokeJoinStyleValues | C# Word API | IronWord",
    "keywords": "Class StrokeJoinStyleValues Inheritance System.Object StrokeJoinStyleValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class StrokeJoinStyleValues : Enum Fields Bevel Declaration public const StrokeJoinStyleValues Bevel Field Value Type Description StrokeJoinStyleValues Miter Declaration public const StrokeJoinStyleValues Miter Field Value Type Description StrokeJoinStyleValues Round Declaration public const StrokeJoinStyleValues Round Field Value Type Description StrokeJoinStyleValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.StyleValues.html": {
    "href": "api/IronWord.Models.Enums.StyleValues.html",
    "title": "Class StyleValues | C# Word API | IronWord",
    "keywords": "Class StyleValues Inheritance System.Object StyleValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class StyleValues : Enum Fields Character Declaration public const StyleValues Character Field Value Type Description StyleValues Numbering Declaration public const StyleValues Numbering Field Value Type Description StyleValues Paragraph Declaration public const StyleValues Paragraph Field Value Type Description StyleValues Table Declaration public const StyleValues Table Field Value Type Description StyleValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.TableStyle.html": {
    "href": "api/IronWord.Models.Enums.TableStyle.html",
    "title": "Class TableStyle | C# Word API | IronWord",
    "keywords": "Class TableStyle Inheritance System.Object TableStyle Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class TableStyle : Enum Fields DarkList Declaration public const TableStyle DarkList Field Value Type Description TableStyle DarkShading Declaration public const TableStyle DarkShading Field Value Type Description TableStyle LightList Declaration public const TableStyle LightList Field Value Type Description TableStyle LightShading Declaration public const TableStyle LightShading Field Value Type Description TableStyle MediumList1 Declaration public const TableStyle MediumList1 Field Value Type Description TableStyle MediumList2 Declaration public const TableStyle MediumList2 Field Value Type Description TableStyle MediumShading1 Declaration public const TableStyle MediumShading1 Field Value Type Description TableStyle MediumShading2 Declaration public const TableStyle MediumShading2 Field Value Type Description TableStyle TableGrid Declaration public const TableStyle TableGrid Field Value Type Description TableStyle TableNormal Declaration public const TableStyle TableNormal Field Value Type Description TableStyle value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.TextAlignment.html": {
    "href": "api/IronWord.Models.Enums.TextAlignment.html",
    "title": "Class TextAlignment | C# Word API | IronWord",
    "keywords": "Class TextAlignment Inheritance System.Object TextAlignment Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class TextAlignment : Enum Fields Center Declaration public const TextAlignment Center Field Value Type Description TextAlignment Justified Declaration public const TextAlignment Justified Field Value Type Description TextAlignment Left Declaration public const TextAlignment Left Field Value Type Description TextAlignment Right Declaration public const TextAlignment Right Field Value Type Description TextAlignment value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.TextWrap.html": {
    "href": "api/IronWord.Models.Enums.TextWrap.html",
    "title": "Class TextWrap | C# Word API | IronWord",
    "keywords": "Class TextWrap Inheritance System.Object TextWrap Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class TextWrap : Enum Fields None Declaration public const TextWrap None Field Value Type Description TextWrap Square Declaration public const TextWrap Square Field Value Type Description TextWrap Tight Declaration public const TextWrap Tight Field Value Type Description TextWrap value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.TextWrapStyle.html": {
    "href": "api/IronWord.Models.Enums.TextWrapStyle.html",
    "title": "Class TextWrapStyle | C# Word API | IronWord",
    "keywords": "Class TextWrapStyle Inheritance System.Object TextWrapStyle Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class TextWrapStyle : Enum Fields Behind Declaration public const TextWrapStyle Behind Field Value Type Description TextWrapStyle InFront Declaration public const TextWrapStyle InFront Field Value Type Description TextWrapStyle Inline Declaration public const TextWrapStyle Inline Field Value Type Description TextWrapStyle Square Declaration public const TextWrapStyle Square Field Value Type Description TextWrapStyle Tight Declaration public const TextWrapStyle Tight Field Value Type Description TextWrapStyle value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.ThemeColorValues.html": {
    "href": "api/IronWord.Models.Enums.ThemeColorValues.html",
    "title": "Class ThemeColorValues | C# Word API | IronWord",
    "keywords": "Class ThemeColorValues Inheritance System.Object ThemeColorValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ThemeColorValues : Enum Fields Accent1 Declaration public const ThemeColorValues Accent1 Field Value Type Description ThemeColorValues Accent2 Declaration public const ThemeColorValues Accent2 Field Value Type Description ThemeColorValues Accent3 Declaration public const ThemeColorValues Accent3 Field Value Type Description ThemeColorValues Accent4 Declaration public const ThemeColorValues Accent4 Field Value Type Description ThemeColorValues Accent5 Declaration public const ThemeColorValues Accent5 Field Value Type Description ThemeColorValues Accent6 Declaration public const ThemeColorValues Accent6 Field Value Type Description ThemeColorValues Background1 Declaration public const ThemeColorValues Background1 Field Value Type Description ThemeColorValues Background2 Declaration public const ThemeColorValues Background2 Field Value Type Description ThemeColorValues Dark1 Declaration public const ThemeColorValues Dark1 Field Value Type Description ThemeColorValues Dark2 Declaration public const ThemeColorValues Dark2 Field Value Type Description ThemeColorValues FollowedHyperlink Declaration public const ThemeColorValues FollowedHyperlink Field Value Type Description ThemeColorValues Hyperlink Declaration public const ThemeColorValues Hyperlink Field Value Type Description ThemeColorValues Light1 Declaration public const ThemeColorValues Light1 Field Value Type Description ThemeColorValues Light2 Declaration public const ThemeColorValues Light2 Field Value Type Description ThemeColorValues None Declaration public const ThemeColorValues None Field Value Type Description ThemeColorValues Text1 Declaration public const ThemeColorValues Text1 Field Value Type Description ThemeColorValues Text2 Declaration public const ThemeColorValues Text2 Field Value Type Description ThemeColorValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.ThemeFontValues.html": {
    "href": "api/IronWord.Models.Enums.ThemeFontValues.html",
    "title": "Class ThemeFontValues | C# Word API | IronWord",
    "keywords": "Class ThemeFontValues Inheritance System.Object ThemeFontValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class ThemeFontValues : Enum Fields MajorAscii Declaration public const ThemeFontValues MajorAscii Field Value Type Description ThemeFontValues MajorBidi Declaration public const ThemeFontValues MajorBidi Field Value Type Description ThemeFontValues MajorEastAsia Declaration public const ThemeFontValues MajorEastAsia Field Value Type Description ThemeFontValues MajorHighAnsi Declaration public const ThemeFontValues MajorHighAnsi Field Value Type Description ThemeFontValues MinorAscii Declaration public const ThemeFontValues MinorAscii Field Value Type Description ThemeFontValues MinorBidi Declaration public const ThemeFontValues MinorBidi Field Value Type Description ThemeFontValues MinorEastAsia Declaration public const ThemeFontValues MinorEastAsia Field Value Type Description ThemeFontValues MinorHighAnsi Declaration public const ThemeFontValues MinorHighAnsi Field Value Type Description ThemeFontValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.UnderlineValues.html": {
    "href": "api/IronWord.Models.Enums.UnderlineValues.html",
    "title": "Class UnderlineValues | C# Word API | IronWord",
    "keywords": "Class UnderlineValues Inheritance System.Object UnderlineValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class UnderlineValues : Enum Fields Dash Declaration public const UnderlineValues Dash Field Value Type Description UnderlineValues DashDotDotHeavy Declaration public const UnderlineValues DashDotDotHeavy Field Value Type Description UnderlineValues DashDotHeavy Declaration public const UnderlineValues DashDotHeavy Field Value Type Description UnderlineValues DashedHeavy Declaration public const UnderlineValues DashedHeavy Field Value Type Description UnderlineValues DashLong Declaration public const UnderlineValues DashLong Field Value Type Description UnderlineValues DashLongHeavy Declaration public const UnderlineValues DashLongHeavy Field Value Type Description UnderlineValues DotDash Declaration public const UnderlineValues DotDash Field Value Type Description UnderlineValues DotDotDash Declaration public const UnderlineValues DotDotDash Field Value Type Description UnderlineValues Dotted Declaration public const UnderlineValues Dotted Field Value Type Description UnderlineValues DottedHeavy Declaration public const UnderlineValues DottedHeavy Field Value Type Description UnderlineValues Double Declaration public const UnderlineValues Double Field Value Type Description UnderlineValues None Declaration public const UnderlineValues None Field Value Type Description UnderlineValues Single Declaration public const UnderlineValues Single Field Value Type Description UnderlineValues Thick Declaration public const UnderlineValues Thick Field Value Type Description UnderlineValues value__ Declaration public int value__ Field Value Type Description System.Int32 Wave Declaration public const UnderlineValues Wave Field Value Type Description UnderlineValues WavyDouble Declaration public const UnderlineValues WavyDouble Field Value Type Description UnderlineValues WavyHeavy Declaration public const UnderlineValues WavyHeavy Field Value Type Description UnderlineValues Words Declaration public const UnderlineValues Words Field Value Type Description UnderlineValues"
  },
  "api/IronWord.Models.Enums.Units.html": {
    "href": "api/IronWord.Models.Enums.Units.html",
    "title": "Class Units | C# Word API | IronWord",
    "keywords": "Class Units Inheritance System.Object Units Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class Units : Enum Fields cm Declaration public const Units cm Field Value Type Description Units EMU Declaration public const Units EMU Field Value Type Description Units inch Declaration public const Units inch Field Value Type Description Units mm Declaration public const Units mm Field Value Type Description Units pt Declaration public const Units pt Field Value Type Description Units Twips Declaration public const Units Twips Field Value Type Description Units value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.VerticalAlign.html": {
    "href": "api/IronWord.Models.Enums.VerticalAlign.html",
    "title": "Class VerticalAlign | C# Word API | IronWord",
    "keywords": "Class VerticalAlign Inheritance System.Object VerticalAlign Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class VerticalAlign : Enum Fields Bottom Declaration public const VerticalAlign Bottom Field Value Type Description VerticalAlign Middle Declaration public const VerticalAlign Middle Field Value Type Description VerticalAlign Top Declaration public const VerticalAlign Top Field Value Type Description VerticalAlign value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.VerticalAlignment.html": {
    "href": "api/IronWord.Models.Enums.VerticalAlignment.html",
    "title": "Class VerticalAlignment | C# Word API | IronWord",
    "keywords": "Class VerticalAlignment Inheritance System.Object VerticalAlignment Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class VerticalAlignment : Enum Fields Bottom Declaration public const VerticalAlignment Bottom Field Value Type Description VerticalAlignment Middle Declaration public const VerticalAlignment Middle Field Value Type Description VerticalAlignment Top Declaration public const VerticalAlignment Top Field Value Type Description VerticalAlignment value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.VerticalPositionValues.html": {
    "href": "api/IronWord.Models.Enums.VerticalPositionValues.html",
    "title": "Class VerticalPositionValues | C# Word API | IronWord",
    "keywords": "Class VerticalPositionValues Inheritance System.Object VerticalPositionValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class VerticalPositionValues : Enum Fields Baseline Declaration public const VerticalPositionValues Baseline Field Value Type Description VerticalPositionValues Subscript Declaration public const VerticalPositionValues Subscript Field Value Type Description VerticalPositionValues Superscript Declaration public const VerticalPositionValues Superscript Field Value Type Description VerticalPositionValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.VerticalTextAlignmentValues.html": {
    "href": "api/IronWord.Models.Enums.VerticalTextAlignmentValues.html",
    "title": "Class VerticalTextAlignmentValues | C# Word API | IronWord",
    "keywords": "Class VerticalTextAlignmentValues Inheritance System.Object VerticalTextAlignmentValues Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class VerticalTextAlignmentValues : Enum Fields Auto Declaration public const VerticalTextAlignmentValues Auto Field Value Type Description VerticalTextAlignmentValues Baseline Declaration public const VerticalTextAlignmentValues Baseline Field Value Type Description VerticalTextAlignmentValues Bottom Declaration public const VerticalTextAlignmentValues Bottom Field Value Type Description VerticalTextAlignmentValues Center Declaration public const VerticalTextAlignmentValues Center Field Value Type Description VerticalTextAlignmentValues Top Declaration public const VerticalTextAlignmentValues Top Field Value Type Description VerticalTextAlignmentValues value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Enums.WrapText.html": {
    "href": "api/IronWord.Models.Enums.WrapText.html",
    "title": "Class WrapText | C# Word API | IronWord",
    "keywords": "Class WrapText Inheritance System.Object WrapText Namespace : IronWord.Models.Enums Assembly : IronWord.dll Syntax public sealed class WrapText : Enum Fields BehindText Declaration public const WrapText BehindText Field Value Type Description WrapText InFrontOfText Declaration public const WrapText InFrontOfText Field Value Type Description WrapText InLineWithText Declaration public const WrapText InLineWithText Field Value Type Description WrapText None Declaration public const WrapText None Field Value Type Description WrapText Square Declaration public const WrapText Square Field Value Type Description WrapText Through Declaration public const WrapText Through Field Value Type Description WrapText Tight Declaration public const WrapText Tight Field Value Type Description WrapText TopAndBottom Declaration public const WrapText TopAndBottom Field Value Type Description WrapText value__ Declaration public int value__ Field Value Type Description System.Int32"
  },
  "api/IronWord.Models.Exceptions.html": {
    "href": "api/IronWord.Models.Exceptions.html",
    "title": "Namespace IronWord.Models.Exceptions | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Exceptions Classes ImageLoadException"
  },
  "api/IronWord.Models.Exceptions.ImageLoadException.html": {
    "href": "api/IronWord.Models.Exceptions.ImageLoadException.html",
    "title": "Class ImageLoadException | C# Word API | IronWord",
    "keywords": "Class ImageLoadException Inheritance System.Object ImageLoadException Namespace : IronWord.Models.Exceptions Assembly : IronWord.dll Syntax public class ImageLoadException : Exception Constructors ImageLoadException(String, Exception) Declaration public ImageLoadException(string message, Exception innerException) Parameters Type Name Description System.String message System.Exception innerException"
  },
  "api/IronWord.Models.Extensions.ColorHelper.html": {
    "href": "api/IronWord.Models.Extensions.ColorHelper.html",
    "title": "Class ColorHelper | C# Word API | IronWord",
    "keywords": "Class ColorHelper Inheritance System.Object ColorHelper Namespace : IronWord.Models.Extensions Assembly : IronWord.dll Syntax public static class ColorHelper : Object Methods ToHex(Color) Declaration public static string ToHex(this Color c) Parameters Type Name Description Color c Returns Type Description System.String"
  },
  "api/IronWord.Models.Extensions.html": {
    "href": "api/IronWord.Models.Extensions.html",
    "title": "Namespace IronWord.Models.Extensions | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Extensions Classes ColorHelper StreamHelper"
  },
  "api/IronWord.Models.Extensions.StreamHelper.html": {
    "href": "api/IronWord.Models.Extensions.StreamHelper.html",
    "title": "Class StreamHelper | C# Word API | IronWord",
    "keywords": "Class StreamHelper Inheritance System.Object StreamHelper Namespace : IronWord.Models.Extensions Assembly : IronWord.dll Syntax public static class StreamHelper : Object Methods GetImageType(FileStream) Declaration public static ImageType GetImageType(this FileStream stream) Parameters Type Name Description System.IO.FileStream stream Returns Type Description ImageType GetImageType(MemoryStream) Declaration public static ImageType GetImageType(this MemoryStream stream) Parameters Type Name Description System.IO.MemoryStream stream Returns Type Description ImageType GetImageType(Stream) Declaration public static ImageType GetImageType(this Stream stream) Parameters Type Name Description System.IO.Stream stream Returns Type Description ImageType ToBase64(FileStream) Declaration public static string ToBase64(this FileStream stream) Parameters Type Name Description System.IO.FileStream stream Returns Type Description System.String ToBase64(Stream) Declaration public static string ToBase64(this Stream stream) Parameters Type Name Description System.IO.Stream stream Returns Type Description System.String"
  },
  "api/IronWord.Models.Font.html": {
    "href": "api/IronWord.Models.Font.html",
    "title": "Class Font | C# Word API | IronWord",
    "keywords": "Class Font Inheritance System.Object Font Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Font : Object Constructors Font() Declaration public Font() Properties AsciiTheme Declaration public Nullable<ThemeFontValues> AsciiTheme { get; set; } Property Value Type Description System.Nullable < ThemeFontValues > ComplexScript Declaration public string ComplexScript { get; set; } Property Value Type Description System.String ComplexScriptTheme Declaration public Nullable<ThemeFontValues> ComplexScriptTheme { get; set; } Property Value Type Description System.Nullable < ThemeFontValues > EastAsia Declaration public string EastAsia { get; set; } Property Value Type Description System.String EastAsiaTheme Declaration public Nullable<ThemeFontValues> EastAsiaTheme { get; set; } Property Value Type Description System.Nullable < ThemeFontValues > FontFamily Declaration public string FontFamily { get; set; } Property Value Type Description System.String FontSize Declaration public Nullable<double> FontSize { get; set; } Property Value Type Description System.Nullable < System.Double > FontSizeComplexScript Declaration public Nullable<double> FontSizeComplexScript { get; set; } Property Value Type Description System.Nullable < System.Double > HighAnsi Declaration public string HighAnsi { get; set; } Property Value Type Description System.String HighAnsiTheme Declaration public Nullable<ThemeFontValues> HighAnsiTheme { get; set; } Property Value Type Description System.Nullable < ThemeFontValues >"
  },
  "api/IronWord.Models.Form.html": {
    "href": "api/IronWord.Models.Form.html",
    "title": "Class Form | C# Word API | IronWord",
    "keywords": "Class Form Inheritance System.Object Form Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Form : Object Constructors Form() Declaration public Form() Properties Elements Declaration public List<FormElement> Elements { get; set; } Property Value Type Description System.Collections.Generic.List < FormElement >"
  },
  "api/IronWord.Models.Glow.html": {
    "href": "api/IronWord.Models.Glow.html",
    "title": "Class Glow | C# Word API | IronWord",
    "keywords": "Class Glow Inheritance System.Object Glow Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Glow : Object Constructors Glow() Declaration public Glow() Properties GlowColor Declaration public Color GlowColor { get; set; } Property Value Type Description Color GlowRadius Declaration public double GlowRadius { get; set; } Property Value Type Description System.Double Methods GetGlowRadius(Units) Declaration public double GetGlowRadius(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetGlowRadius(Double, Units) Declaration public void SetGlowRadius(double glowRadius, Units measurementUnit) Parameters Type Name Description System.Double glowRadius Units measurementUnit"
  },
  "api/IronWord.Models.Gradient.html": {
    "href": "api/IronWord.Models.Gradient.html",
    "title": "Class Gradient | C# Word API | IronWord",
    "keywords": "Class Gradient Inheritance System.Object Gradient Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Gradient : Object Constructors Gradient() Declaration public Gradient() Fields DefaultGray Declaration public static Gradient DefaultGray Field Value Type Description Gradient Properties LinearShadeAngle Declaration public Nullable<double> LinearShadeAngle { get; set; } Property Value Type Description System.Nullable < System.Double > LinearShadeScaled Declaration public Nullable<bool> LinearShadeScaled { get; set; } Property Value Type Description System.Nullable < System.Boolean > StopPoints Declaration public List<GradientStop> StopPoints { get; set; } Property Value Type Description System.Collections.Generic.List < GradientStop >"
  },
  "api/IronWord.Models.GradientStop.html": {
    "href": "api/IronWord.Models.GradientStop.html",
    "title": "Class GradientStop | C# Word API | IronWord",
    "keywords": "Class GradientStop Inheritance System.Object GradientStop Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class GradientStop : Object Constructors GradientStop() Declaration public GradientStop() Fields FirstDefault Declaration public static GradientStop FirstDefault Field Value Type Description GradientStop SecondDefault Declaration public static GradientStop SecondDefault Field Value Type Description GradientStop Properties Color Declaration public Color Color { get; set; } Property Value Type Description Color StopPoint Declaration public double StopPoint { get; set; } Property Value Type Description System.Double Methods GetStopPoint(Units) Declaration public double GetStopPoint(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetStopPoint(Double, Units) Declaration public void SetStopPoint(double stopPoint, Units measurementUnit) Parameters Type Name Description System.Double stopPoint Units measurementUnit"
  },
  "api/IronWord.Models.html": {
    "href": "api/IronWord.Models.html",
    "title": "Namespace IronWord.Models | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models Classes AxisConfiguration Bevel Borders BorderStyle Chart ChartDataSource ChartStyle Color Container DocumentSection Effect3D ElementPosition Font Form Glow Gradient GradientStop Image ListItem MergeCell MultiLevelTextList PageSetup Paragraph ParagraphBorders ParagraphIndentation ParagraphStyle RadioButton Reflection Run Shading Shadow Shape SpacingBetweenLines Style Table TableBorders TableCell TableRow Text TextEffect TextInput TextOutlineEffect TextStyle Underline ZebraColor Interfaces ITextStyle"
  },
  "api/IronWord.Models.Image.html": {
    "href": "api/IronWord.Models.Image.html",
    "title": "Class Image | C# Word API | IronWord",
    "keywords": "Class Image Inheritance System.Object ContentElement Image Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Image : ContentElement Constructors Image() Declaration public Image() Image(AnyBitmap) Declaration public Image(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Image(Stream) Declaration public Image(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Image(String) Declaration public Image(string imagePath) Parameters Type Name Description System.String imagePath Properties DistanceFromBottom Declaration public double DistanceFromBottom { get; set; } Property Value Type Description System.Double DistanceFromLeft Declaration public double DistanceFromLeft { get; set; } Property Value Type Description System.Double DistanceFromRight Declaration public double DistanceFromRight { get; set; } Property Value Type Description System.Double DistanceFromTop Declaration public double DistanceFromTop { get; set; } Property Value Type Description System.Double Height Declaration public double Height { get; set; } Property Value Type Description System.Double Id Declaration public uint Id { get; set; } Property Value Type Description System.UInt32 ImageData Declaration public string ImageData { get; } Property Value Type Description System.String Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Name Declaration public string Name { get; set; } Property Value Type Description System.String Position Declaration public ElementPosition Position { get; set; } Property Value Type Description ElementPosition Type Declaration public ImageType Type { get; set; } Property Value Type Description ImageType Width Declaration public double Width { get; set; } Property Value Type Description System.Double WrapText Declaration public WrapText WrapText { get; set; } Property Value Type Description WrapText Methods Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ContentElement.Clone() GetDistanceFromBottom(Units) Declaration public double GetDistanceFromBottom(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromLeft(Units) Declaration public double GetDistanceFromLeft(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromRight(Units) Declaration public double GetDistanceFromRight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromTop(Units) Declaration public double GetDistanceFromTop(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetHeight(Units) Declaration public double GetHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double LoadFromFile(String) Declaration public void LoadFromFile(string imagePath) Parameters Type Name Description System.String imagePath LoadFromStream(Stream) Declaration public void LoadFromStream(Stream stream) Parameters Type Name Description System.IO.Stream stream SetDistanceFromBottom(Double, Units) Declaration public void SetDistanceFromBottom(double distanceFromBottom, Units measurementUnit) Parameters Type Name Description System.Double distanceFromBottom Units measurementUnit SetDistanceFromLeft(Double, Units) Declaration public void SetDistanceFromLeft(double distanceFromLeft, Units measurementUnit) Parameters Type Name Description System.Double distanceFromLeft Units measurementUnit SetDistanceFromRight(Double, Units) Declaration public void SetDistanceFromRight(double distanceFromRight, Units measurementUnit) Parameters Type Name Description System.Double distanceFromRight Units measurementUnit SetDistanceFromTop(Double, Units) Declaration public void SetDistanceFromTop(double distanceFromTop, Units measurementUnit) Parameters Type Name Description System.Double distanceFromTop Units measurementUnit SetHeight(Double, Units) Declaration public void SetHeight(double height, Units measurementUnit) Parameters Type Name Description System.Double height Units measurementUnit SetWidth(Double, Units) Declaration public void SetWidth(double width, Units measurementUnit) Parameters Type Name Description System.Double width Units measurementUnit Inherited members Status Replace(ContentElement) Remove() GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Initiate.html": {
    "href": "api/IronWord.Models.Initiate.html",
    "title": "Namespace IronWord.Models.Initiate | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.Initiate Classes InitLogger"
  },
  "api/IronWord.Models.Initiate.InitLogger.html": {
    "href": "api/IronWord.Models.Initiate.InitLogger.html",
    "title": "Class InitLogger | C# Word API | IronWord",
    "keywords": "Class InitLogger Inheritance System.Object InitLogger Namespace : IronWord.Models.Initiate Assembly : IronWord.dll Syntax public class InitLogger : Object Constructors InitLogger(String) Declaration public InitLogger(string logPath) Parameters Type Name Description System.String logPath"
  },
  "api/IronWord.Models.ITextStyle.html": {
    "href": "api/IronWord.Models.ITextStyle.html",
    "title": "Interface ITextStyle | C# Word API | IronWord",
    "keywords": "Interface ITextStyle Namespace : IronWord.Models Assembly : IronWord.dll Syntax public interface ITextStyle Properties Caps Declaration bool Caps { get; set; } Property Value Type Description System.Boolean CharacterScale Declaration Nullable<int> CharacterScale { get; set; } Property Value Type Description System.Nullable < System.Int32 > Color Declaration Color Color { get; set; } Property Value Type Description Color Emboss Declaration bool Emboss { get; set; } Property Value Type Description System.Boolean Emphasis Declaration Nullable<EmphasisMarkValues> Emphasis { get; set; } Property Value Type Description System.Nullable < EmphasisMarkValues > Imprint Declaration bool Imprint { get; set; } Property Value Type Description System.Boolean IsBold Declaration bool IsBold { get; set; } Property Value Type Description System.Boolean IsItalic Declaration bool IsItalic { get; set; } Property Value Type Description System.Boolean Kern Declaration Nullable<int> Kern { get; set; } Property Value Type Description System.Nullable < System.Int32 > Languages Declaration string Languages { get; set; } Property Value Type Description System.String NoProof Declaration bool NoProof { get; set; } Property Value Type Description System.Boolean Outline Declaration bool Outline { get; set; } Property Value Type Description System.Boolean Shading Declaration Shading Shading { get; set; } Property Value Type Description Shading Shadow Declaration bool Shadow { get; set; } Property Value Type Description System.Boolean SmallCaps Declaration bool SmallCaps { get; set; } Property Value Type Description System.Boolean SnapToGrid Declaration bool SnapToGrid { get; set; } Property Value Type Description System.Boolean Spacing Declaration Nullable<int> Spacing { get; set; } Property Value Type Description System.Nullable < System.Int32 > SpecVanish Declaration bool SpecVanish { get; set; } Property Value Type Description System.Boolean Strike Declaration Nullable<StrikeValue> Strike { get; set; } Property Value Type Description System.Nullable < StrikeValue > TextEffect Declaration TextEffect TextEffect { get; set; } Property Value Type Description TextEffect TextFont Declaration Font TextFont { get; set; } Property Value Type Description Font Underline Declaration Underline Underline { get; set; } Property Value Type Description Underline Vanish Declaration bool Vanish { get; set; } Property Value Type Description System.Boolean VerticalPosition Declaration Nullable<double> VerticalPosition { get; set; } Property Value Type Description System.Nullable < System.Double > VerticalTextAlignment Declaration Nullable<VerticalPositionValues> VerticalTextAlignment { get; set; } Property Value Type Description System.Nullable < VerticalPositionValues > WebHidden Declaration bool WebHidden { get; set; } Property Value Type Description System.Boolean Methods Clone() Declaration TextStyle Clone() Returns Type Description TextStyle Reset() Declaration TextStyle Reset() Returns Type Description TextStyle"
  },
  "api/IronWord.Models.List.html": {
    "href": "api/IronWord.Models.List.html",
    "title": "Namespace IronWord.Models.List | C# Word API | IronWord",
    "keywords": "Namespace IronWord.Models.List Classes ListLevel"
  },
  "api/IronWord.Models.List.ListLevel.html": {
    "href": "api/IronWord.Models.List.ListLevel.html",
    "title": "Class ListLevel | C# Word API | IronWord",
    "keywords": "Class ListLevel Inheritance System.Object ContentElement ListLevel Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.Clone() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models.List Assembly : IronWord.dll Syntax public class ListLevel : ContentElement Constructors ListLevel() Declaration public ListLevel() Properties IsLegalNumberingStyle Declaration public string IsLegalNumberingStyle { get; set; } Property Value Type Description System.String LegacyNumbering Declaration public string LegacyNumbering { get; set; } Property Value Type Description System.String LevelJustification Declaration public string LevelJustification { get; set; } Property Value Type Description System.String LevelPictureBulletId Declaration public string LevelPictureBulletId { get; set; } Property Value Type Description System.String LevelRestart Declaration public string LevelRestart { get; set; } Property Value Type Description System.String LevelSuffix Declaration public string LevelSuffix { get; set; } Property Value Type Description System.String LevelText Declaration public string LevelText { get; set; } Property Value Type Description System.String NumberingFormat Declaration public string NumberingFormat { get; set; } Property Value Type Description System.String NumberingSymbolRunProperties Declaration public string NumberingSymbolRunProperties { get; set; } Property Value Type Description System.String ParagraphStyleIdInLevel Declaration public string ParagraphStyleIdInLevel { get; set; } Property Value Type Description System.String PreviousParagraphProperties Declaration public string PreviousParagraphProperties { get; set; } Property Value Type Description System.String StartNumberingValue Declaration public string StartNumberingValue { get; set; } Property Value Type Description System.String Inherited members Status Replace(ContentElement) Remove() GetIndex<T>() Clone() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.ListItem.html": {
    "href": "api/IronWord.Models.ListItem.html",
    "title": "Class ListItem | C# Word API | IronWord",
    "keywords": "Class ListItem Inheritance System.Object ContentElement ParentElement ListItem Inherited Members ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ListItem : ParentElement Constructors ListItem(MultiLevelTextList) Declaration public ListItem(MultiLevelTextList subMultiLevelTextList) Parameters Type Name Description MultiLevelTextList subMultiLevelTextList ListItem(Paragraph) Declaration public ListItem(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Properties Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Methods AddSubMultiLevelTextList(MultiLevelTextList) Declaration public void AddSubMultiLevelTextList(MultiLevelTextList subMultiLevelTextList) Parameters Type Name Description MultiLevelTextList subMultiLevelTextList Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() RemoveSubMultiLevelTextList() Declaration public void RemoveSubMultiLevelTextList() Update(Paragraph) Declaration public void Update(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Inherited members AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.MergeCell.html": {
    "href": "api/IronWord.Models.MergeCell.html",
    "title": "Class MergeCell | C# Word API | IronWord",
    "keywords": "Class MergeCell Inheritance System.Object MergeCell Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class MergeCell : Object Constructors MergeCell() Declaration public MergeCell() Properties EndColumn Declaration public int EndColumn { get; set; } Property Value Type Description System.Int32 EndRow Declaration public int EndRow { get; set; } Property Value Type Description System.Int32 StartColumn Declaration public int StartColumn { get; set; } Property Value Type Description System.Int32 StartRow Declaration public int StartRow { get; set; } Property Value Type Description System.Int32"
  },
  "api/IronWord.Models.MultiLevelTextList.html": {
    "href": "api/IronWord.Models.MultiLevelTextList.html",
    "title": "Class MultiLevelTextList | C# Word API | IronWord",
    "keywords": "Class MultiLevelTextList Inheritance System.Object ContentElement ParentElement MultiLevelTextList Inherited Members ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class MultiLevelTextList : ParentElement Constructors MultiLevelTextList() Declaration public MultiLevelTextList() MultiLevelTextList(ListItem[]) Declaration public MultiLevelTextList(params ListItem[] children) Parameters Type Name Description ListItem [] children Properties HangingIndentation Declaration public double HangingIndentation { get; set; } Property Value Type Description System.Double Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Items Declaration public List<ListItem> Items { get; } Property Value Type Description System.Collections.Generic.List < ListItem > Justification Declaration public JustificationValues Justification { get; set; } Property Value Type Description JustificationValues ListType Declaration public NumberFormatValues ListType { get; set; } Property Value Type Description NumberFormatValues NumberingId Declaration protected int NumberingId { get; set; } Property Value Type Description System.Int32 StartIndentation Declaration public double StartIndentation { get; set; } Property Value Type Description System.Double StartNumberingValue Declaration public int StartNumberingValue { get; set; } Property Value Type Description System.Int32 SymbolText Declaration public string SymbolText { get; set; } Property Value Type Description System.String SymbolTextFontName Declaration public string SymbolTextFontName { get; set; } Property Value Type Description System.String Methods AddItem(ListItem) Declaration public void AddItem(ListItem item) Parameters Type Name Description ListItem item Clear(ListItem) Declaration public void Clear(ListItem item) Parameters Type Name Description ListItem item Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() GetHangingIndentation(Units) Declaration public double GetHangingIndentation(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetStartIndentation(Units) Declaration public double GetStartIndentation(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double RemoveItem(ListItem) Declaration public void RemoveItem(ListItem item) Parameters Type Name Description ListItem item SetHangingIndentation(Double, Units) Declaration public void SetHangingIndentation(double hangingIndentation, Units measurementUnit) Parameters Type Name Description System.Double hangingIndentation Units measurementUnit SetStartIndentation(Double, Units) Declaration public void SetStartIndentation(double startIndentation, Units measurementUnit) Parameters Type Name Description System.Double startIndentation Units measurementUnit Inherited members AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.PageSetup.html": {
    "href": "api/IronWord.Models.PageSetup.html",
    "title": "Class PageSetup | C# Word API | IronWord",
    "keywords": "Class PageSetup Inheritance System.Object PageSetup Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class PageSetup : Object Constructors PageSetup() Declaration public PageSetup() Properties BottomMargin Declaration public double BottomMargin { get; set; } Property Value Type Description System.Double Footer Declaration public double Footer { get; set; } Property Value Type Description System.Double Gutter Declaration public double Gutter { get; set; } Property Value Type Description System.Double Header Declaration public double Header { get; set; } Property Value Type Description System.Double LeftMargin Declaration public double LeftMargin { get; set; } Property Value Type Description System.Double Orientation Declaration public PageOrientation Orientation { get; set; } Property Value Type Description PageOrientation PaperSize Declaration public PaperSize PaperSize { get; set; } Property Value Type Description PaperSize RightMargin Declaration public double RightMargin { get; set; } Property Value Type Description System.Double TopMargin Declaration public double TopMargin { get; set; } Property Value Type Description System.Double Methods GetBottomMargin(Units) Declaration public double GetBottomMargin(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetFooterHeight(Units) Declaration public double GetFooterHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetGutter(Units) Declaration public double GetGutter(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetHeaderHeight(Units) Declaration public double GetHeaderHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetHeight(Units) Declaration public double GetHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetLeftMargin(Units) Declaration public double GetLeftMargin(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetRightMargin(Units) Declaration public double GetRightMargin(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetTopMargin(Units) Declaration public double GetTopMargin(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetBottomMargin(Double, Units) Declaration public void SetBottomMargin(double bottomMargin, Units measurementUnit) Parameters Type Name Description System.Double bottomMargin Units measurementUnit SetCustomPaperSize(Double, Double, Units) Declaration public void SetCustomPaperSize(double width, double height, Units measurementUnit) Parameters Type Name Description System.Double width System.Double height Units measurementUnit SetCustomPaperSize(Int32, Int32) Declaration public void SetCustomPaperSize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height SetFooterHeight(Double, Units) Declaration public void SetFooterHeight(double footerHeight, Units measurementUnit) Parameters Type Name Description System.Double footerHeight Units measurementUnit SetGutter(Int32, Units) Declaration public void SetGutter(int gutter, Units measurementUnit) Parameters Type Name Description System.Int32 gutter Units measurementUnit SetHeaderHeight(Int32, Units) Declaration public void SetHeaderHeight(int headerHeight, Units measurementUnit) Parameters Type Name Description System.Int32 headerHeight Units measurementUnit SetLeftMargin(Int32, Units) Declaration public void SetLeftMargin(int leftMargin, Units measurementUnit) Parameters Type Name Description System.Int32 leftMargin Units measurementUnit SetRightMargin(Double, Units) Declaration public void SetRightMargin(double rightMargin, Units measurementUnit) Parameters Type Name Description System.Double rightMargin Units measurementUnit SetTopMargin(Double, Units) Declaration public void SetTopMargin(double topMargin, Units measurementUnit) Parameters Type Name Description System.Double topMargin Units measurementUnit"
  },
  "api/IronWord.Models.Paragraph.html": {
    "href": "api/IronWord.Models.Paragraph.html",
    "title": "Class Paragraph | C# Word API | IronWord",
    "keywords": "Class Paragraph Inheritance System.Object ContentElement ParentElement Paragraph Implements ITextContainer IDrawContainer Inherited Members ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Paragraph : ParentElement, ITextContainer, IDrawContainer Constructors Paragraph() Declaration public Paragraph() Paragraph(ContentElement[]) Declaration public Paragraph(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Properties Alignment Declaration public TextAlignment Alignment { get; set; } Property Value Type Description TextAlignment Images Declaration public List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Shapes Declaration public List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Style Declaration public ParagraphStyle Style { get; set; } Property Value Type Description ParagraphStyle Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddChild(ContentElement[]) Declaration public override void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Overrides ParentElement.AddChild(ContentElement[]) AddImage(AnyBitmap) Declaration public Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration public Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration public Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration public Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddShape(Shape) Declaration public Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape AddText(Text) Declaration public Text AddText(Text text) Parameters Type Name Description Text text Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() SetAlignment(TextAlignment) Declaration public Paragraph SetAlignment(TextAlignment alignment) Parameters Type Name Description TextAlignment alignment Returns Type Description Paragraph SetStyle(ParagraphStyle) Declaration public Paragraph SetStyle(ParagraphStyle style) Parameters Type Name Description ParagraphStyle style Returns Type Description Paragraph Implements ITextContainer IDrawContainer Inherited members InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.ParagraphBorders.html": {
    "href": "api/IronWord.Models.ParagraphBorders.html",
    "title": "Class ParagraphBorders | C# Word API | IronWord",
    "keywords": "Class ParagraphBorders Inheritance System.Object ParagraphBorders Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ParagraphBorders : Object Constructors ParagraphBorders() Declaration public ParagraphBorders() Properties BarBorder Declaration public BorderStyle BarBorder { get; set; } Property Value Type Description BorderStyle BetweenBorder Declaration public BorderStyle BetweenBorder { get; set; } Property Value Type Description BorderStyle BottomBorder Declaration public BorderStyle BottomBorder { get; set; } Property Value Type Description BorderStyle LeftBorder Declaration public BorderStyle LeftBorder { get; set; } Property Value Type Description BorderStyle RightBorder Declaration public BorderStyle RightBorder { get; set; } Property Value Type Description BorderStyle TopBorder Declaration public BorderStyle TopBorder { get; set; } Property Value Type Description BorderStyle"
  },
  "api/IronWord.Models.ParagraphIndentation.html": {
    "href": "api/IronWord.Models.ParagraphIndentation.html",
    "title": "Class ParagraphIndentation | C# Word API | IronWord",
    "keywords": "Class ParagraphIndentation Inheritance System.Object ParagraphIndentation Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ParagraphIndentation : Object Constructors ParagraphIndentation() Declaration public ParagraphIndentation() Properties End Declaration public Nullable<double> End { get; set; } Property Value Type Description System.Nullable < System.Double > EndCharacters Declaration public Nullable<double> EndCharacters { get; set; } Property Value Type Description System.Nullable < System.Double > FirstLine Declaration public Nullable<double> FirstLine { get; set; } Property Value Type Description System.Nullable < System.Double > FirstLineChars Declaration public Nullable<double> FirstLineChars { get; set; } Property Value Type Description System.Nullable < System.Double > Hanging Declaration public Nullable<double> Hanging { get; set; } Property Value Type Description System.Nullable < System.Double > HangingChars Declaration public Nullable<double> HangingChars { get; set; } Property Value Type Description System.Nullable < System.Double > Left Declaration public Nullable<double> Left { get; set; } Property Value Type Description System.Nullable < System.Double > LeftChars Declaration public Nullable<double> LeftChars { get; set; } Property Value Type Description System.Nullable < System.Double > Right Declaration public Nullable<double> Right { get; set; } Property Value Type Description System.Nullable < System.Double > RightChars Declaration public Nullable<double> RightChars { get; set; } Property Value Type Description System.Nullable < System.Double > Start Declaration public Nullable<double> Start { get; set; } Property Value Type Description System.Nullable < System.Double > StartCharacters Declaration public Nullable<double> StartCharacters { get; set; } Property Value Type Description System.Nullable < System.Double > Methods GetEnd(Units) Declaration public Nullable<double> GetEnd(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetEndCharacters(Units) Declaration public Nullable<double> GetEndCharacters(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetFirstLine(Units) Declaration public Nullable<double> GetFirstLine(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetFirstLineChars(Units) Declaration public Nullable<double> GetFirstLineChars(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetHanging(Units) Declaration public Nullable<double> GetHanging(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetHangingChars(Units) Declaration public Nullable<double> GetHangingChars(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetLeft(Units) Declaration public Nullable<double> GetLeft(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetLeftChars(Units) Declaration public Nullable<double> GetLeftChars(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetRight(Units) Declaration public Nullable<double> GetRight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetRightChars(Units) Declaration public Nullable<double> GetRightChars(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetStart(Units) Declaration public Nullable<double> GetStart(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > GetStartCharacters(Units) Declaration public Nullable<double> GetStartCharacters(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Nullable < System.Double > SetEnd(Nullable<Double>, Units) Declaration public void SetEnd(Nullable<double> end, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > end Units measurementUnit SetEndCharacters(Nullable<Double>, Units) Declaration public void SetEndCharacters(Nullable<double> endCharacters, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > endCharacters Units measurementUnit SetFirstLine(Nullable<Double>, Units) Declaration public void SetFirstLine(Nullable<double> firstLine, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > firstLine Units measurementUnit SetFirstLineChars(Nullable<Double>, Units) Declaration public void SetFirstLineChars(Nullable<double> firstLineChars, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > firstLineChars Units measurementUnit SetHanging(Nullable<Double>, Units) Declaration public void SetHanging(Nullable<double> hanging, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > hanging Units measurementUnit SetHangingChars(Nullable<Double>, Units) Declaration public void SetHangingChars(Nullable<double> hangingChars, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > hangingChars Units measurementUnit SetLeft(Nullable<Double>, Units) Declaration public void SetLeft(Nullable<double> left, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > left Units measurementUnit SetLeftChars(Nullable<Double>, Units) Declaration public void SetLeftChars(Nullable<double> leftChars, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > leftChars Units measurementUnit SetRight(Nullable<Double>, Units) Declaration public void SetRight(Nullable<double> right, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > right Units measurementUnit SetRightChars(Nullable<Double>, Units) Declaration public void SetRightChars(Nullable<double> rightChars, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > rightChars Units measurementUnit SetStart(Nullable<Double>, Units) Declaration public void SetStart(Nullable<double> start, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > start Units measurementUnit SetStartCharacters(Nullable<Double>, Units) Declaration public void SetStartCharacters(Nullable<double> startCharacters, Units measurementUnit) Parameters Type Name Description System.Nullable < System.Double > startCharacters Units measurementUnit"
  },
  "api/IronWord.Models.ParagraphStyle.html": {
    "href": "api/IronWord.Models.ParagraphStyle.html",
    "title": "Class ParagraphStyle | C# Word API | IronWord",
    "keywords": "Class ParagraphStyle Inheritance System.Object DocumentStyle ParagraphStyle Inherited Members DocumentStyle.Status DocumentStyle.SetNoChangeStatusAsUpdated() DocumentStyle.StyleId Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ParagraphStyle : DocumentStyle Constructors ParagraphStyle() Declaration public ParagraphStyle() Properties AdjustRightIndent Declaration public Nullable<bool> AdjustRightIndent { get; set; } Property Value Type Description System.Nullable < System.Boolean > AutoSpaceEastAndNumbers Declaration public Nullable<bool> AutoSpaceEastAndNumbers { get; set; } Property Value Type Description System.Nullable < System.Boolean > AutoSpaceLatinAndEast Declaration public Nullable<bool> AutoSpaceLatinAndEast { get; set; } Property Value Type Description System.Nullable < System.Boolean > Borders Declaration public ParagraphBorders Borders { get; set; } Property Value Type Description ParagraphBorders ContextualSpacing Declaration public Nullable<bool> ContextualSpacing { get; set; } Property Value Type Description System.Nullable < System.Boolean > Indentation Declaration public ParagraphIndentation Indentation { get; set; } Property Value Type Description ParagraphIndentation Justification Declaration public Nullable<JustificationValues> Justification { get; set; } Property Value Type Description System.Nullable < JustificationValues > KeepLinesOnPage Declaration public Nullable<bool> KeepLinesOnPage { get; set; } Property Value Type Description System.Nullable < System.Boolean > KeepWithNextParagraph Declaration public Nullable<bool> KeepWithNextParagraph { get; set; } Property Value Type Description System.Nullable < System.Boolean > Kinsoku Declaration public Nullable<bool> Kinsoku { get; set; } Property Value Type Description System.Nullable < System.Boolean > MirrorIndents Declaration public Nullable<bool> MirrorIndents { get; set; } Property Value Type Description System.Nullable < System.Boolean > OutlineLevel Declaration public Nullable<int> OutlineLevel { get; set; } Property Value Type Description System.Nullable < System.Int32 > OverflowPunctuation Declaration public Nullable<bool> OverflowPunctuation { get; set; } Property Value Type Description System.Nullable < System.Boolean > PageBreakBefore Declaration public Nullable<bool> PageBreakBefore { get; set; } Property Value Type Description System.Nullable < System.Boolean > RightToLeft Declaration public Nullable<bool> RightToLeft { get; set; } Property Value Type Description System.Nullable < System.Boolean > SpacingBetweenLines Declaration public SpacingBetweenLines SpacingBetweenLines { get; set; } Property Value Type Description SpacingBetweenLines TextAlignment Declaration public Nullable<VerticalTextAlignmentValues> TextAlignment { get; set; } Property Value Type Description System.Nullable < VerticalTextAlignmentValues > WordWrap Declaration public Nullable<bool> WordWrap { get; set; } Property Value Type Description System.Nullable < System.Boolean > Inherited members Status SetNoChangeStatusAsUpdated() StyleId"
  },
  "api/IronWord.Models.RadioButton.html": {
    "href": "api/IronWord.Models.RadioButton.html",
    "title": "Class RadioButton | C# Word API | IronWord",
    "keywords": "Class RadioButton Inheritance System.Object FormElement RadioButton Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class RadioButton : FormElement Constructors RadioButton() Declaration public RadioButton()"
  },
  "api/IronWord.Models.Reflection.html": {
    "href": "api/IronWord.Models.Reflection.html",
    "title": "Class Reflection | C# Word API | IronWord",
    "keywords": "Class Reflection Inheritance System.Object Reflection Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Reflection : Object Constructors Reflection() Declaration public Reflection() Properties Alignment Declaration public RectangleAlignmentValues Alignment { get; set; } Property Value Type Description RectangleAlignmentValues BlurRadius Declaration public double BlurRadius { get; set; } Property Value Type Description System.Double DirectionAngle Declaration public double DirectionAngle { get; set; } Property Value Type Description System.Double DistanceFromText Declaration public double DistanceFromText { get; set; } Property Value Type Description System.Double EndingOpacity Declaration public double EndingOpacity { get; set; } Property Value Type Description System.Double EndPosition Declaration public double EndPosition { get; set; } Property Value Type Description System.Double FadeDirectionAngle Declaration public double FadeDirectionAngle { get; set; } Property Value Type Description System.Double HorizontalScalingFactor Declaration public int HorizontalScalingFactor { get; set; } Property Value Type Description System.Int32 HorizontalSkewAngle Declaration public double HorizontalSkewAngle { get; set; } Property Value Type Description System.Double SchemeColor Declaration public Color SchemeColor { get; set; } Property Value Type Description Color StartingOpacity Declaration public double StartingOpacity { get; set; } Property Value Type Description System.Double StartPosition Declaration public double StartPosition { get; set; } Property Value Type Description System.Double VerticalScalingFactor Declaration public double VerticalScalingFactor { get; set; } Property Value Type Description System.Double VerticalSkewAngle Declaration public double VerticalSkewAngle { get; set; } Property Value Type Description System.Double Methods GetBlurRadius(Units) Declaration public double GetBlurRadius(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromText(Units) Declaration public double GetDistanceFromText(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetEndPosition(Units) Declaration public double GetEndPosition(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetStartPosition(Units) Declaration public double GetStartPosition(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetBlurRadius(Double, Units) Declaration public void SetBlurRadius(double blurRadius, Units measurementUnit) Parameters Type Name Description System.Double blurRadius Units measurementUnit SetDistanceFromText(Double, Units) Declaration public void SetDistanceFromText(double distance, Units measurementUnit) Parameters Type Name Description System.Double distance Units measurementUnit SetEndPosition(Double, Units) Declaration public void SetEndPosition(double endPosition, Units measurementUnit) Parameters Type Name Description System.Double endPosition Units measurementUnit SetStartPosition(Double, Units) Declaration public void SetStartPosition(double startPosition, Units measurementUnit) Parameters Type Name Description System.Double startPosition Units measurementUnit"
  },
  "api/IronWord.Models.Run.html": {
    "href": "api/IronWord.Models.Run.html",
    "title": "Class Run | C# Word API | IronWord",
    "keywords": "Class Run Inheritance System.Object ContentElement ParentElement Run Implements IDrawContainer ITextContainer Inherited Members ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Run : ParentElement, IDrawContainer, ITextContainer Constructors Run() Declaration public Run() Run(Image[]) Declaration public Run(params Image[] children) Parameters Type Name Description Image [] children Run(Shape[]) Declaration public Run(params Shape[] children) Parameters Type Name Description Shape [] children Run(Text[]) Declaration public Run(params Text[] children) Parameters Type Name Description Text [] children Properties Images Declaration public List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Shapes Declaration public List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Style Declaration public TextStyle Style { get; set; } Property Value Type Description TextStyle Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddImage(AnyBitmap) Declaration public Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration public Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration public Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration public Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddShape(Shape) Declaration public Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape AddText(Text) Declaration public Text AddText(Text text) Parameters Type Name Description Text text Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() Implements IDrawContainer ITextContainer Inherited members AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Shading.html": {
    "href": "api/IronWord.Models.Shading.html",
    "title": "Class Shading | C# Word API | IronWord",
    "keywords": "Class Shading Inheritance System.Object Shading Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Shading : Object Constructors Shading() Declaration public Shading() Properties Color Declaration public Color Color { get; set; } Property Value Type Description Color Fill Declaration public Color Fill { get; set; } Property Value Type Description Color ShadingPattern Declaration public Nullable<ShadingPatternValues> ShadingPattern { get; set; } Property Value Type Description System.Nullable < ShadingPatternValues > ThemeColor Declaration public Color ThemeColor { get; set; } Property Value Type Description Color ThemeFill Declaration public Color ThemeFill { get; set; } Property Value Type Description Color ThemeFillShade Declaration public Color ThemeFillShade { get; set; } Property Value Type Description Color ThemeFillTint Declaration public string ThemeFillTint { get; set; } Property Value Type Description System.String ThemeTint Declaration public string ThemeTint { get; set; } Property Value Type Description System.String"
  },
  "api/IronWord.Models.Shadow.html": {
    "href": "api/IronWord.Models.Shadow.html",
    "title": "Class Shadow | C# Word API | IronWord",
    "keywords": "Class Shadow Inheritance System.Object Shadow Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Shadow : Object Constructors Shadow() Declaration public Shadow() Fields OuterShadow1 Declaration public static Shadow OuterShadow1 Field Value Type Description Shadow Properties Alignment Declaration public RectangleAlignmentValues Alignment { get; set; } Property Value Type Description RectangleAlignmentValues BlurRadius Declaration public double BlurRadius { get; set; } Property Value Type Description System.Double DirectionAngle Declaration public double DirectionAngle { get; set; } Property Value Type Description System.Double DistanceFromText Declaration public double DistanceFromText { get; set; } Property Value Type Description System.Double HorizontalScalingFactor Declaration public int HorizontalScalingFactor { get; set; } Property Value Type Description System.Int32 HorizontalSkewAngle Declaration public double HorizontalSkewAngle { get; set; } Property Value Type Description System.Double SchemeColor Declaration public Color SchemeColor { get; set; } Property Value Type Description Color VerticalScalingFactor Declaration public double VerticalScalingFactor { get; set; } Property Value Type Description System.Double VerticalSkewAngle Declaration public double VerticalSkewAngle { get; set; } Property Value Type Description System.Double Methods GetBlurRadius(Units) Declaration public double GetBlurRadius(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromText(Units) Declaration public double GetDistanceFromText(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetBlurRadius(Double, Units) Declaration public void SetBlurRadius(double blurRadius, Units measurementUnit) Parameters Type Name Description System.Double blurRadius Units measurementUnit SetDistanceFromText(Double, Units) Declaration public void SetDistanceFromText(double distance, Units measurementUnit) Parameters Type Name Description System.Double distance Units measurementUnit"
  },
  "api/IronWord.Models.Shape.html": {
    "href": "api/IronWord.Models.Shape.html",
    "title": "Class Shape | C# Word API | IronWord",
    "keywords": "Class Shape Inheritance System.Object ContentElement Shape Inherited Members ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Shape : ContentElement Constructors Shape() Declaration public Shape() Properties Angle Declaration public double Angle { get; set; } Property Value Type Description System.Double DistanceFromBottom Declaration public double DistanceFromBottom { get; set; } Property Value Type Description System.Double DistanceFromLeft Declaration public double DistanceFromLeft { get; set; } Property Value Type Description System.Double DistanceFromRight Declaration public double DistanceFromRight { get; set; } Property Value Type Description System.Double DistanceFromTop Declaration public double DistanceFromTop { get; set; } Property Value Type Description System.Double FillColor Declaration public Color FillColor { get; set; } Property Value Type Description Color Height Declaration public double Height { get; set; } Property Value Type Description System.Double HorizontalAlignment Declaration public HorizontalAlignment HorizontalAlignment { get; set; } Property Value Type Description HorizontalAlignment Id Declaration public uint Id { get; set; } Property Value Type Description System.UInt32 Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Name Declaration public string Name { get; set; } Property Value Type Description System.String StrokeColor Declaration public Color StrokeColor { get; set; } Property Value Type Description Color StrokeWeight Declaration public int StrokeWeight { get; set; } Property Value Type Description System.Int32 Type Declaration public ShapeType Type { get; set; } Property Value Type Description ShapeType VerticalAlignment Declaration public VerticalAlignment VerticalAlignment { get; set; } Property Value Type Description VerticalAlignment Width Declaration public double Width { get; set; } Property Value Type Description System.Double WrapText Declaration public WrapText WrapText { get; set; } Property Value Type Description WrapText Methods Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ContentElement.Clone() FlipHorizontal() Declaration public void FlipHorizontal() FlipVertical() Declaration public void FlipVertical() GetDistanceFromBottom(Units) Declaration public double GetDistanceFromBottom(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromLeft(Units) Declaration public double GetDistanceFromLeft(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromRight(Units) Declaration public double GetDistanceFromRight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetDistanceFromTop(Units) Declaration public double GetDistanceFromTop(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetHeight(Units) Declaration public double GetHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double Resize(Int32, Int32) Declaration public void Resize(int width, int height) Parameters Type Name Description System.Int32 width System.Int32 height Rotate(Double) Declaration public void Rotate(double angle) Parameters Type Name Description System.Double angle SetDistanceFromBottom(Double, Units) Declaration public void SetDistanceFromBottom(double distanceFromBottom, Units measurementUnit) Parameters Type Name Description System.Double distanceFromBottom Units measurementUnit SetDistanceFromLeft(Double, Units) Declaration public void SetDistanceFromLeft(double distanceFromLeft, Units measurementUnit) Parameters Type Name Description System.Double distanceFromLeft Units measurementUnit SetDistanceFromRight(Double, Units) Declaration public void SetDistanceFromRight(double distanceFromRight, Units measurementUnit) Parameters Type Name Description System.Double distanceFromRight Units measurementUnit SetDistanceFromTop(Double, Units) Declaration public void SetDistanceFromTop(double distanceFromTop, Units measurementUnit) Parameters Type Name Description System.Double distanceFromTop Units measurementUnit SetHeight(Double, Units) Declaration public void SetHeight(double height, Units measurementUnit) Parameters Type Name Description System.Double height Units measurementUnit SetWidth(Double, Units) Declaration public void SetWidth(double width, Units measurementUnit) Parameters Type Name Description System.Double width Units measurementUnit Inherited members Status Replace(ContentElement) Remove() GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.SpacingBetweenLines.html": {
    "href": "api/IronWord.Models.SpacingBetweenLines.html",
    "title": "Class SpacingBetweenLines | C# Word API | IronWord",
    "keywords": "Class SpacingBetweenLines Inheritance System.Object SpacingBetweenLines Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class SpacingBetweenLines : Object Constructors SpacingBetweenLines() Declaration public SpacingBetweenLines() Properties After Declaration public Nullable<int> After { get; set; } Property Value Type Description System.Nullable < System.Int32 > AfterAutoSpacing Declaration public Nullable<bool> AfterAutoSpacing { get; set; } Property Value Type Description System.Nullable < System.Boolean > AfterLines Declaration public Nullable<int> AfterLines { get; set; } Property Value Type Description System.Nullable < System.Int32 > Before Declaration public Nullable<int> Before { get; set; } Property Value Type Description System.Nullable < System.Int32 > BeforeAutoSpacing Declaration public Nullable<bool> BeforeAutoSpacing { get; set; } Property Value Type Description System.Nullable < System.Boolean > BeforeLines Declaration public Nullable<int> BeforeLines { get; set; } Property Value Type Description System.Nullable < System.Int32 > Line Declaration public Nullable<int> Line { get; set; } Property Value Type Description System.Nullable < System.Int32 > LineRule Declaration public Nullable<LineSpacingRuleValues> LineRule { get; set; } Property Value Type Description System.Nullable < LineSpacingRuleValues >"
  },
  "api/IronWord.Models.Style.html": {
    "href": "api/IronWord.Models.Style.html",
    "title": "Class Style | C# Word API | IronWord",
    "keywords": "Class Style Inheritance System.Object DocumentStyle Style Inherited Members DocumentStyle.Status DocumentStyle.SetNoChangeStatusAsUpdated() DocumentStyle.StyleId Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Style : DocumentStyle Constructors Style() Declaration public Style() Properties BasedOn Declaration public string BasedOn { get; set; } Property Value Type Description System.String IsPrimaryStyle Declaration public Nullable<bool> IsPrimaryStyle { get; set; } Property Value Type Description System.Nullable < System.Boolean > NextParagraphStyle Declaration public string NextParagraphStyle { get; set; } Property Value Type Description System.String ParagraphStyle Declaration public ParagraphStyle ParagraphStyle { get; set; } Property Value Type Description ParagraphStyle StyleName Declaration public string StyleName { get; set; } Property Value Type Description System.String StyleType Declaration public Nullable<StyleValues> StyleType { get; set; } Property Value Type Description System.Nullable < StyleValues > TextStyle Declaration public TextStyle TextStyle { get; set; } Property Value Type Description TextStyle Inherited members Status SetNoChangeStatusAsUpdated() StyleId"
  },
  "api/IronWord.Models.Table.html": {
    "href": "api/IronWord.Models.Table.html",
    "title": "Class Table | C# Word API | IronWord",
    "keywords": "Class Table Inheritance System.Object ContentElement ParentElement TableElements Table Implements System.Collections.Generic.IEnumerable < TableCell > System.Collections.IEnumerable System.Collections.Generic.IEnumerable < TableRow > Inherited Members TableElements.SetBorders(TableBorders) TableElements.Borders TableElements.BackgroundColor ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Table : TableElements Constructors Table() Declaration public Table() Table(TableRow[]) Declaration public Table(params TableRow[] rows) Parameters Type Name Description TableRow [] rows Table(Int32, Int32) Declaration public Table(int row, int column) Parameters Type Name Description System.Int32 row System.Int32 column Properties Direction Declaration public Direction Direction { get; set; } Property Value Type Description Direction Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Item[Int32] Declaration public TableRow this[int row] { get; set; } Parameters Type Name Description System.Int32 row Property Value Type Description TableRow Item[Int32, Int32] Declaration public TableCell this[int row, int column] { get; set; } Parameters Type Name Description System.Int32 row System.Int32 column Property Value Type Description TableCell MergedCells Declaration public List<MergeCell> MergedCells { get; set; } Property Value Type Description System.Collections.Generic.List < MergeCell > Rows Declaration public List<TableRow> Rows { get; } Property Value Type Description System.Collections.Generic.List < TableRow > Shading Declaration public Shading Shading { get; set; } Property Value Type Description Shading Style Declaration public TableStyle Style { get; set; } Property Value Type Description TableStyle Width Declaration public double Width { get; set; } Property Value Type Description System.Double Zebra Declaration public ZebraColor Zebra { get; set; } Property Value Type Description ZebraColor Methods AddColumn() Declaration public Table AddColumn() Returns Type Description Table AddRow(TableRow) Declaration public Table AddRow(TableRow row) Parameters Type Name Description TableRow row Returns Type Description Table Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() GetCell(Int32, Int32) Declaration public TableCell GetCell(int row, int column) Parameters Type Name Description System.Int32 row System.Int32 column Returns Type Description TableCell GetCellValue(Int32, Int32) Declaration public List<ContentElement> GetCellValue(int row, int column) Parameters Type Name Description System.Int32 row System.Int32 column Returns Type Description System.Collections.Generic.List < ContentElement > GetEnumerator() Declaration public IEnumerator<TableCell> GetEnumerator() Returns Type Description System.Collections.Generic.IEnumerator < TableCell > GetRow(Int32) Declaration public TableRow GetRow(int row) Parameters Type Name Description System.Int32 row Returns Type Description TableRow GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double MergeCells(Int32, Int32, Int32, Int32) Declaration public Table MergeCells(int startRow, int startColumn, int endRow, int endColumn) Parameters Type Name Description System.Int32 startRow System.Int32 startColumn System.Int32 endRow System.Int32 endColumn Returns Type Description Table RemoveColumn(Int32) Declaration public Table RemoveColumn(int index) Parameters Type Name Description System.Int32 index Returns Type Description Table RemoveRow(Int32) Declaration public Table RemoveRow(int index) Parameters Type Name Description System.Int32 index Returns Type Description Table SetCellValue(Int32, Int32, ContentElement) Declaration public Table SetCellValue(int row, int column, ContentElement content) Parameters Type Name Description System.Int32 row System.Int32 column ContentElement content Returns Type Description Table SetWidth(Double, Units) Declaration public Table SetWidth(double width, Units measurementUnit) Parameters Type Name Description System.Double width Units measurementUnit Returns Type Description Table Split(Int32, Int32, Int32, Int32) Declaration public Table Split(int row, int column, int toRow, int toColumn) Parameters Type Name Description System.Int32 row System.Int32 column System.Int32 toRow System.Int32 toColumn Returns Type Description Table Implements System.Collections.Generic.IEnumerable<> System.Collections.IEnumerable System.Collections.Generic.IEnumerable<> Inherited members SetBorders(TableBorders) Borders BackgroundColor AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.TableBorders.html": {
    "href": "api/IronWord.Models.TableBorders.html",
    "title": "Class TableBorders | C# Word API | IronWord",
    "keywords": "Class TableBorders Inheritance System.Object TableBorders Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TableBorders : Object Constructors TableBorders() Declaration public TableBorders() Properties BottomBorder Declaration public BorderStyle BottomBorder { get; set; } Property Value Type Description BorderStyle LeftBorder Declaration public BorderStyle LeftBorder { get; set; } Property Value Type Description BorderStyle RightBorder Declaration public BorderStyle RightBorder { get; set; } Property Value Type Description BorderStyle TopBorder Declaration public BorderStyle TopBorder { get; set; } Property Value Type Description BorderStyle"
  },
  "api/IronWord.Models.TableCell.html": {
    "href": "api/IronWord.Models.TableCell.html",
    "title": "Class TableCell | C# Word API | IronWord",
    "keywords": "Class TableCell Inheritance System.Object ContentElement ParentElement TableElements TableCell Implements IElementContainer ITextContainer IDrawContainer Inherited Members TableElements.SetBorders(TableBorders) TableElements.Borders TableElements.BackgroundColor ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TableCell : TableElements, IElementContainer, ITextContainer, IDrawContainer Constructors TableCell() Declaration public TableCell() TableCell(ContentElement[]) Declaration public TableCell(params ContentElement[] contents) Parameters Type Name Description ContentElement [] contents Properties BottomMargin Declaration public double BottomMargin { get; set; } Property Value Type Description System.Double Charts Declaration public List<Chart> Charts { get; } Property Value Type Description System.Collections.Generic.List < Chart > Contents Declaration public List<ContentElement> Contents { get; } Property Value Type Description System.Collections.Generic.List < ContentElement > FitText Declaration public bool FitText { get; set; } Property Value Type Description System.Boolean GridSpan Declaration public int GridSpan { get; set; } Property Value Type Description System.Int32 Images Declaration public List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 LeftMargin Declaration public double LeftMargin { get; set; } Property Value Type Description System.Double MultiLevelTextLists Declaration public List<MultiLevelTextList> MultiLevelTextLists { get; } Property Value Type Description System.Collections.Generic.List < MultiLevelTextList > Paragraphs Declaration public List<Paragraph> Paragraphs { get; } Property Value Type Description System.Collections.Generic.List < Paragraph > RightMargin Declaration public double RightMargin { get; set; } Property Value Type Description System.Double Shading Declaration public Shading Shading { get; set; } Property Value Type Description Shading Shapes Declaration public List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Tables Declaration public List<Table> Tables { get; } Property Value Type Description System.Collections.Generic.List < Table > TextAlignment Declaration public JustificationValues TextAlignment { get; set; } Property Value Type Description JustificationValues Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > TopMargin Declaration public double TopMargin { get; set; } Property Value Type Description System.Double VerticalAlignment Declaration public VerticalAlign VerticalAlignment { get; set; } Property Value Type Description VerticalAlign Width Declaration public double Width { get; set; } Property Value Type Description System.Double Methods AddChild(ContentElement[]) Declaration public override void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children Overrides ParentElement.AddChild(ContentElement[]) AddImage(AnyBitmap) Declaration public Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration public Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration public Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration public Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddMultiLevelTextList(MultiLevelTextList) Declaration public MultiLevelTextList AddMultiLevelTextList(MultiLevelTextList multiLevelTextList) Parameters Type Name Description MultiLevelTextList multiLevelTextList Returns Type Description MultiLevelTextList AddParagraph(Paragraph) Declaration public Paragraph AddParagraph(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Returns Type Description Paragraph AddShape(Shape) Declaration public Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape AddTable(Table) Declaration public Table AddTable(Table table) Parameters Type Name Description Table table Returns Type Description Table AddText(Text) Declaration public Text AddText(Text text) Parameters Type Name Description Text text Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() CloneStruct() Declaration public TableCell CloneStruct() Returns Type Description TableCell GetWidth(Units) Declaration public double GetWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double InsertCellAfterSelf(TableCell) Declaration public TableCell InsertCellAfterSelf(TableCell cell) Parameters Type Name Description TableCell cell Returns Type Description TableCell InsertCellBeforeSelf(TableCell) Declaration public TableCell InsertCellBeforeSelf(TableCell cell) Parameters Type Name Description TableCell cell Returns Type Description TableCell SetContent(ContentElement) Declaration public TableCell SetContent(ContentElement content) Parameters Type Name Description ContentElement content Returns Type Description TableCell SetWidth(Double, Units) Declaration public TableCell SetWidth(double width, Units measurementUnit) Parameters Type Name Description System.Double width Units measurementUnit Returns Type Description TableCell Split(Int32, Int32) Declaration public TableCell Split(int toRow, int toColumn) Parameters Type Name Description System.Int32 toRow System.Int32 toColumn Returns Type Description TableCell Implements IElementContainer ITextContainer IDrawContainer Inherited members SetBorders(TableBorders) Borders BackgroundColor InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.TableRow.html": {
    "href": "api/IronWord.Models.TableRow.html",
    "title": "Class TableRow | C# Word API | IronWord",
    "keywords": "Class TableRow Inheritance System.Object ContentElement ParentElement TableElements TableRow Implements System.Collections.Generic.IEnumerable < TableCell > System.Collections.IEnumerable Inherited Members TableElements.SetBorders(TableBorders) TableElements.Borders TableElements.BackgroundColor ParentElement.AddChild(ContentElement[]) ParentElement.InsertChildToIndex(Int32, ContentElement[]) ParentElement.Remove() ParentElement.RemoveChildren(ContentElement[]) ParentElement.RemoveAllChildren() ParentElement.ExtractElements<T>() ParentElement.GetChildByIndex<T>(Int32) ParentElement.CloneElement<T>(T) ParentElement.LogObjectTree() ParentElement.Children ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.GetIndex<T>() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TableRow : TableElements Constructors TableRow() Declaration public TableRow() TableRow(TableCell[]) Declaration public TableRow(params TableCell[] cells) Parameters Type Name Description TableCell [] cells Properties Cells Declaration public List<TableCell> Cells { get; } Property Value Type Description System.Collections.Generic.List < TableCell > Height Declaration public double Height { get; set; } Property Value Type Description System.Double Index Declaration public int Index { get; set; } Property Value Type Description System.Int32 Item[Int32] Declaration public TableCell this[int column] { get; set; } Parameters Type Name Description System.Int32 column Property Value Type Description TableCell Methods AddCell(TableCell) Declaration public void AddCell(TableCell cell) Parameters Type Name Description TableCell cell Clone() Declaration public override ContentElement Clone() Returns Type Description ContentElement Overrides ParentElement.Clone() CloneStruct() Declaration public TableRow CloneStruct() Returns Type Description TableRow GetEnumerator() Declaration public IEnumerator<TableCell> GetEnumerator() Returns Type Description System.Collections.Generic.IEnumerator < TableCell > GetHeight(Units) Declaration public double GetHeight(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double InsertRowAfterSelf() Declaration public void InsertRowAfterSelf() InsertRowAfterSelf(TableRow) Declaration public void InsertRowAfterSelf(TableRow row) Parameters Type Name Description TableRow row InsertRowBeforeSelf() Declaration public void InsertRowBeforeSelf() InsertRowBeforeSelf(TableRow) Declaration public void InsertRowBeforeSelf(TableRow row) Parameters Type Name Description TableRow row SetHeight(Double, Units) Declaration public void SetHeight(double height, Units measurementUnit) Parameters Type Name Description System.Double height Units measurementUnit Implements System.Collections.Generic.IEnumerable<> System.Collections.IEnumerable Inherited members SetBorders(TableBorders) Borders BackgroundColor AddChild(ContentElement[]) InsertChildToIndex(Int32, ContentElement[]) Remove() RemoveChildren(ContentElement[]) RemoveAllChildren() ExtractElements<T>() GetChildByIndex<T>(Int32) CloneElement<T>(T) LogObjectTree() Children Status Replace(ContentElement) GetIndex<T>() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.Text.html": {
    "href": "api/IronWord.Models.Text.html",
    "title": "Class Text | C# Word API | IronWord",
    "keywords": "Class Text Inheritance System.Object ContentElement TextContentElement Text Implements ITextContentElement Inherited Members TextContentElement.Replace(String, String, Nullable<RegexOptions>, Boolean, Boolean) TextContentElement.Find(String, Nullable<RegexOptions>, Boolean, Boolean) TextContentElement.ToString() TextContentElement.Text TextContentElement.Style ContentElement.Status ContentElement.Replace(ContentElement) ContentElement.Remove() ContentElement.GetIndex<T>() ContentElement.Clone() ContentElement.CloneObject<T>(T) ContentElement.Parent Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Text : TextContentElement, ITextContentElement Constructors Text() Declaration public Text() Text(String) Declaration public Text(string text) Parameters Type Name Description System.String text Methods Append(Text) Declaration public Text Append(Text text) Parameters Type Name Description Text text Returns Type Description Text Split(String) Declaration public List<Text> Split(string delimiter) Parameters Type Name Description System.String delimiter Returns Type Description System.Collections.Generic.List < Text > Implements ITextContentElement Inherited members Replace(String, String, Nullable<RegexOptions>, Boolean, Boolean) Find(String, Nullable<RegexOptions>, Boolean, Boolean) ToString() Text Style Status Replace(ContentElement) Remove() GetIndex<T>() Clone() CloneObject<T>(T) Parent"
  },
  "api/IronWord.Models.TextEffect.html": {
    "href": "api/IronWord.Models.TextEffect.html",
    "title": "Class TextEffect | C# Word API | IronWord",
    "keywords": "Class TextEffect Inheritance System.Object TextEffect Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TextEffect : Object Constructors TextEffect() Declaration public TextEffect() Properties Effect3D Declaration public Effect3D Effect3D { get; set; } Property Value Type Description Effect3D GlowEffect Declaration public Glow GlowEffect { get; set; } Property Value Type Description Glow GradientEffect Declaration public Gradient GradientEffect { get; set; } Property Value Type Description Gradient ReflectionEffect Declaration public Reflection ReflectionEffect { get; set; } Property Value Type Description Reflection ShadowEffect Declaration public Shadow ShadowEffect { get; set; } Property Value Type Description Shadow TextOutlineEffect Declaration public TextOutlineEffect TextOutlineEffect { get; set; } Property Value Type Description TextOutlineEffect"
  },
  "api/IronWord.Models.TextInput.html": {
    "href": "api/IronWord.Models.TextInput.html",
    "title": "Class TextInput | C# Word API | IronWord",
    "keywords": "Class TextInput Inheritance System.Object FormElement TextInput Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TextInput : FormElement Constructors TextInput() Declaration public TextInput()"
  },
  "api/IronWord.Models.TextOutlineEffect.html": {
    "href": "api/IronWord.Models.TextOutlineEffect.html",
    "title": "Class TextOutlineEffect | C# Word API | IronWord",
    "keywords": "Class TextOutlineEffect Inheritance System.Object TextOutlineEffect Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TextOutlineEffect : Object Constructors TextOutlineEffect() Declaration public TextOutlineEffect() Fields DefaultEffect Declaration public static TextOutlineEffect DefaultEffect Field Value Type Description TextOutlineEffect Properties Color Declaration public Color Color { get; set; } Property Value Type Description Color CompoundLineType Declaration public CompoundLineValues CompoundLineType { get; set; } Property Value Type Description CompoundLineValues LineCapType Declaration public LineCapValues LineCapType { get; set; } Property Value Type Description LineCapValues LineJoin Declaration public StrokeJoinStyleValues LineJoin { get; set; } Property Value Type Description StrokeJoinStyleValues LineWidth Declaration public double LineWidth { get; set; } Property Value Type Description System.Double PenAlignment Declaration public PenAlignmentValues PenAlignment { get; set; } Property Value Type Description PenAlignmentValues presetLineDash Declaration public PresetLineDashValues presetLineDash { get; set; } Property Value Type Description PresetLineDashValues Methods GetLineWidth(Units) Declaration public double GetLineWidth(Units measurementUnit) Parameters Type Name Description Units measurementUnit Returns Type Description System.Double SetLineWidth(Double, Units) Declaration public void SetLineWidth(double lineWidth, Units measurementUnit) Parameters Type Name Description System.Double lineWidth Units measurementUnit"
  },
  "api/IronWord.Models.TextStyle.html": {
    "href": "api/IronWord.Models.TextStyle.html",
    "title": "Class TextStyle | C# Word API | IronWord",
    "keywords": "Class TextStyle Inheritance System.Object DocumentStyle TextStyle Implements ITextStyle Inherited Members DocumentStyle.Status DocumentStyle.SetNoChangeStatusAsUpdated() DocumentStyle.StyleId Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class TextStyle : DocumentStyle, ITextStyle Constructors TextStyle() Declaration public TextStyle() Properties Caps Declaration public bool Caps { get; set; } Property Value Type Description System.Boolean CharacterScale Declaration public Nullable<int> CharacterScale { get; set; } Property Value Type Description System.Nullable < System.Int32 > Color Declaration public Color Color { get; set; } Property Value Type Description Color Emboss Declaration public bool Emboss { get; set; } Property Value Type Description System.Boolean Emphasis Declaration public Nullable<EmphasisMarkValues> Emphasis { get; set; } Property Value Type Description System.Nullable < EmphasisMarkValues > Imprint Declaration public bool Imprint { get; set; } Property Value Type Description System.Boolean IsBold Declaration public bool IsBold { get; set; } Property Value Type Description System.Boolean IsItalic Declaration public bool IsItalic { get; set; } Property Value Type Description System.Boolean Kern Declaration public Nullable<int> Kern { get; set; } Property Value Type Description System.Nullable < System.Int32 > Languages Declaration public string Languages { get; set; } Property Value Type Description System.String NoProof Declaration public bool NoProof { get; set; } Property Value Type Description System.Boolean Outline Declaration public bool Outline { get; set; } Property Value Type Description System.Boolean Shading Declaration public Shading Shading { get; set; } Property Value Type Description Shading Shadow Declaration public bool Shadow { get; set; } Property Value Type Description System.Boolean SmallCaps Declaration public bool SmallCaps { get; set; } Property Value Type Description System.Boolean SnapToGrid Declaration public bool SnapToGrid { get; set; } Property Value Type Description System.Boolean Spacing Declaration public Nullable<int> Spacing { get; set; } Property Value Type Description System.Nullable < System.Int32 > SpecVanish Declaration public bool SpecVanish { get; set; } Property Value Type Description System.Boolean Strike Declaration public Nullable<StrikeValue> Strike { get; set; } Property Value Type Description System.Nullable < StrikeValue > TextEffect Declaration public TextEffect TextEffect { get; set; } Property Value Type Description TextEffect TextFont Declaration public Font TextFont { get; set; } Property Value Type Description Font Underline Declaration public Underline Underline { get; set; } Property Value Type Description Underline Vanish Declaration public bool Vanish { get; set; } Property Value Type Description System.Boolean VerticalPosition Declaration public Nullable<double> VerticalPosition { get; set; } Property Value Type Description System.Nullable < System.Double > VerticalTextAlignment Declaration public Nullable<VerticalPositionValues> VerticalTextAlignment { get; set; } Property Value Type Description System.Nullable < VerticalPositionValues > WebHidden Declaration public bool WebHidden { get; set; } Property Value Type Description System.Boolean Methods Clone() Declaration public TextStyle Clone() Returns Type Description TextStyle Reset() Declaration public TextStyle Reset() Returns Type Description TextStyle Implements ITextStyle Inherited members Status SetNoChangeStatusAsUpdated() StyleId"
  },
  "api/IronWord.Models.Underline.html": {
    "href": "api/IronWord.Models.Underline.html",
    "title": "Class Underline | C# Word API | IronWord",
    "keywords": "Class Underline Inheritance System.Object Underline Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class Underline : Object Constructors Underline() Declaration public Underline() Underline(UnderlineValues, Color, Color, Int32, Double) Declaration public Underline(UnderlineValues val, Color color, Color themeColor, int themeShade, double themeTint) Parameters Type Name Description UnderlineValues val Color color Color themeColor System.Int32 themeShade System.Double themeTint Properties Color Declaration public Color Color { get; set; } Property Value Type Description Color LineValue Declaration public Nullable<UnderlineValues> LineValue { get; set; } Property Value Type Description System.Nullable < UnderlineValues > ThemeColor Declaration public Color ThemeColor { get; set; } Property Value Type Description Color ThemeShade Declaration public Nullable<int> ThemeShade { get; set; } Property Value Type Description System.Nullable < System.Int32 > ThemeTint Declaration public Nullable<double> ThemeTint { get; set; } Property Value Type Description System.Nullable < System.Double > Methods Clone() Declaration public Underline Clone() Returns Type Description Underline"
  },
  "api/IronWord.Models.ZebraColor.html": {
    "href": "api/IronWord.Models.ZebraColor.html",
    "title": "Class ZebraColor | C# Word API | IronWord",
    "keywords": "Class ZebraColor Inheritance System.Object ZebraColor Namespace : IronWord.Models Assembly : IronWord.dll Syntax public class ZebraColor : Object Constructors ZebraColor(Color, Color) Declaration public ZebraColor(Color color1, Color color2) Parameters Type Name Description Color color1 Color color2 ZebraColor(String, String) Declaration public ZebraColor(string color1, string color2) Parameters Type Name Description System.String color1 System.String color2 Properties Color1 Declaration public Color Color1 { get; set; } Property Value Type Description Color Color2 Declaration public Color Color2 { get; set; } Property Value Type Description Color"
  },
  "api/IronWord.StartUp.html": {
    "href": "api/IronWord.StartUp.html",
    "title": "Class StartUp | C# Word API | IronWord",
    "keywords": "Class StartUp Inheritance System.Object StartUp Namespace : IronWord Assembly : IronWord.dll Syntax public class StartUp : Object Constructors StartUp() Declaration public StartUp() Methods ConfigureServices(IServiceCollection) Declaration public void ConfigureServices(IServiceCollection services) Parameters Type Name Description Microsoft.Extensions.DependencyInjection.IServiceCollection services"
  },
  "api/IronWord.WordDocument.html": {
    "href": "api/IronWord.WordDocument.html",
    "title": "Class WordDocument | C# Word API | IronWord",
    "keywords": "Class WordDocument Inheritance System.Object WordDocument Implements IElementContainer ITextContainer IDrawContainer Namespace : IronWord Assembly : IronWord.dll Syntax public class WordDocument : Object, IElementContainer, ITextContainer, IDrawContainer Constructors WordDocument() Declaration public WordDocument() WordDocument(ContentElement[]) Declaration public WordDocument(params ContentElement[] children) Parameters Type Name Description ContentElement [] children WordDocument(String) Declaration public WordDocument(string filePath) Parameters Type Name Description System.String filePath Properties Charts Declaration public List<Chart> Charts { get; } Property Value Type Description System.Collections.Generic.List < Chart > Images Declaration public List<Image> Images { get; } Property Value Type Description System.Collections.Generic.List < Image > MultiLevelTextLists Declaration public List<MultiLevelTextList> MultiLevelTextLists { get; } Property Value Type Description System.Collections.Generic.List < MultiLevelTextList > Paragraphs Declaration public List<Paragraph> Paragraphs { get; } Property Value Type Description System.Collections.Generic.List < Paragraph > Shapes Declaration public List<Shape> Shapes { get; } Property Value Type Description System.Collections.Generic.List < Shape > Tables Declaration public List<Table> Tables { get; } Property Value Type Description System.Collections.Generic.List < Table > Texts Declaration public List<Text> Texts { get; } Property Value Type Description System.Collections.Generic.List < Text > Methods AddChild(ContentElement[]) Declaration public void AddChild(params ContentElement[] children) Parameters Type Name Description ContentElement [] children AddImage(AnyBitmap) Declaration public Image AddImage(AnyBitmap anyBitmap) Parameters Type Name Description IronSoftware.Drawing.AnyBitmap anyBitmap Returns Type Description Image AddImage(Image) Declaration public Image AddImage(Image image) Parameters Type Name Description Image image Returns Type Description Image AddImage(Stream) Declaration public Image AddImage(Stream imageStream) Parameters Type Name Description System.IO.Stream imageStream Returns Type Description Image AddImage(String) Declaration public Image AddImage(string imagePath) Parameters Type Name Description System.String imagePath Returns Type Description Image AddMultiLevelTextList(MultiLevelTextList) Declaration public MultiLevelTextList AddMultiLevelTextList(MultiLevelTextList multiLevelTextList) Parameters Type Name Description MultiLevelTextList multiLevelTextList Returns Type Description MultiLevelTextList AddParagraph(Paragraph) Declaration public Paragraph AddParagraph(Paragraph paragraph) Parameters Type Name Description Paragraph paragraph Returns Type Description Paragraph AddSection() Declaration public void AddSection() AddSection(DocumentSection) Declaration public void AddSection(DocumentSection documentSection) Parameters Type Name Description DocumentSection documentSection AddShape(Shape) Declaration public Shape AddShape(Shape shape) Parameters Type Name Description Shape shape Returns Type Description Shape AddTable(Table) Declaration public Table AddTable(Table table) Parameters Type Name Description Table table Returns Type Description Table AddText(Text) Declaration public Text AddText(Text textRun) Parameters Type Name Description Text textRun Returns Type Description Text AddText(String) Declaration public Text AddText(string text) Parameters Type Name Description System.String text Returns Type Description Text LogObjectTree() Declaration public void LogObjectTree() Save() Declaration public void Save() Save(String) Declaration public void Save(string filePath) Parameters Type Name Description System.String filePath SaveAs(String) Declaration public void SaveAs(string filePath) Parameters Type Name Description System.String filePath Implements IElementContainer ITextContainer IDrawContainer"
  }
}