XmlMappedRange.Column Property

Definition

Gets the number of the column in the XmlMappedRange control.

public:
 property int Column { int get(); };
public int Column { get; }
member this.Column : int
Public ReadOnly Property Column As Integer

Property Value

The number of the column in the XmlMappedRange control.

Examples

The following code example uses the Column and Row properties to display the column and row numbers of an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

private void DisplayColumnAndRow()
{
    MessageBox.Show("CustomerLastNameCell is in column " +
        this.CustomerLastNameCell.Column.ToString() + " and row " +
        this.CustomerLastNameCell.Row.ToString());
}
Private Sub DisplayColumnAndRow()
    MsgBox("CustomerLastNameCell is in column " & _
        Me.CustomerLastNameCell.Column.ToString() & " and row " & _
        Me.CustomerLastNameCell.Row.ToString())
End Sub

Remarks

Because the XmlMappedRange corresponds to only one cell, this property always returns 1.

Applies to