MapWinGIS:Field Width

From MapWindow GIS

Jump to: navigation, search

Width

Gets or sets the width of the field.


VB.NET Usage

Property Width() As Integer

            Parameters

ReturnValue

The width of the field.

Sample Code

    Private Sub FieldWidth()
        Dim field As New MapWinGIS.Field()
        Dim width As Integer
        'Set the width value to use
        width = 20
        'Set the width of the field
        field.Width = width
        'Get the width of the field
        width = field.Width
    End Sub
  

VB 6 Usage
Property Width() As Long
            Parameters

ReturnValue

The width of the field.

Sample Code

    Private Sub FieldWidth()
        Dim field As New MapWinGIS.field
        Dim width As Long
        'Set the width value to use
        width = 20
        'Set the width of the field
        field.width = width
        'Get the width of the field
        width = field.width
    End Sub

Personal tools