DicomObjects.NET Core Documentation
DicomObjects Namespace / WriteBehaviours Class / OmitBOT Property



In This Topic
    OmitBOT Property
    In This Topic
    Controls whether to write a Basic Offset Table (BOT) for encapsulated (compressed) pixel data.
    Syntax
    'Declaration
     
    
    <ObsoleteAttribute("Please use SeekableBotHandling & NonSeekableBotHandling for finer control")>
    Public Property OmitBOT As Boolean
    'Usage
     
    
    Dim instance As WriteBehaviours
    Dim value As Boolean
     
    instance.OmitBOT = value
     
    value = instance.OmitBOT
    [Obsolete("Please use SeekableBotHandling & NonSeekableBotHandling for finer control")]
    public bool OmitBOT {get; set;}
    [Obsolete("Please use SeekableBotHandling & NonSeekableBotHandling for finer control")]
    public:
    property bool OmitBOT {
       bool get();
       void set (    bool value);
    }
    Remarks

    The default value of this property is derived from the OmitBOT value of the internal registry, which in turn has a default value of 0, causing this property to be false, causing the BOT to be written as normal

    Setting this to true does not cause the BOT to be omited completely (as that would contavene DICOM rules) - instead it causes it to be zero lngth, which is permissible.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also