combit List & Label 29 - .NET Help
combit.Reporting.DataProviders Namespace / FieldType Class
Members Example


In This Topic
    FieldType Class
    In This Topic
    Attribute class that can be used in connection with the ObjectDataProvider. Simply apply this attribute to your class' properties in order to determine the field type to be used (e.g. barcode).
    Object Model
    FieldType Class
    Syntax
    'Declaration
     
    
    Public NotInheritable Class FieldType 
       Inherits System.Attribute
    public sealed class FieldType : System.Attribute 
    public ref class FieldType sealed : public System.Attribute 
    Example
    [FieldType(LlFieldType.Barcode_EAN128)]
    public string PriceEan
    {
    	get { return price.ToString(); }
    }
    <FieldType(LlFieldType.Barcode_EAN128)> _
    Public ReadOnly Property PriceEan() As String
    	Get
    		Return (m_Price)
    	End Get
    End Property
    Inheritance Hierarchy

    System.Object
       System.Attribute
          combit.Reporting.DataProviders.FieldType

    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also