Share

Autodesk.AutoCAD.DatabaseServices.TableFillOptions Enumeration

Description

This .NET enum wraps AcDb::TableFillOption ObjectARX enum. It gives the table fill options.

Visual Basic

Public Enum TableFillOptions
  CopyContent = 8
  CopyFormat = &H10
  GenerateSeries = 4
  None = 0
  OverwriteReadOnlyContent = &H20
  OverwriteReadOnlyFormat = &H40
  Reverse = 2
  Row = 1
End Enum

C#

public enum TableFillOptions {
  CopyContent = 8,
  CopyFormat = 0x10,
  GenerateSeries = 4,
  None = 0,
  OverwriteReadOnlyContent = 0x20,
  OverwriteReadOnlyFormat = 0x40,
  Reverse = 2,
  Row = 1
}

Members

Members Description
CopyContent = 8 Fill with copy of source cells.
CopyFormat = 0x10 Copy format from source cells to filled cells.
GenerateSeries = 4 Fill with series derived from source cells.
None = 0 None.
OverwriteReadOnlyContent = 0x20 If the filled cells have read-only content, overwrite.
OverwriteReadOnlyFormat = 0x40 If the filled cells have read-only format, overwrite.
Reverse = 2 Fill in reverse direction.
Row = 1 Fill along row by filling cells in row.

Was this information helpful?