Sets or returns a NamedStyle object that represents the Style of the current table.

 public NamedStyle Style{ get; set; }
Public Property Style() As NamedStyle

          //--- Return NamedStyle
          NamedStyle oNamedStyle = oTable.Style;

          //--- Set NamedStyle
          oTable.Style = oDocument.Styles[NamedStyle.BuiltIn.NormalTable];
        

          '--- Return NamedStyle
          Dim oNamedStyle As NamedStyle = oTable.Style

          '--- Set NamedStyle
          oTable.Style = oDocument.Styles(NamedStyle.BuiltIn.NormalTable)