Spread Windows Forms 9.0 Product Documentation
Type Property (SheetSpanModelEventArgs)
Example 


Gets the type of event that occurred.
Syntax
'Declaration
 
Public ReadOnly Property Type As SheetSpanModelEventType
'Usage
 
Dim instance As SheetSpanModelEventArgs
Dim value As SheetSpanModelEventType
 
value = instance.Type
public SheetSpanModelEventType Type {get;}

Property Value

SheetSpanModelEventType setting that determines the type of event
Example

This example returns the type of event that occurred when the span was added. In this case the SpanAdded event type is

returned.

FarPoint.Win.Spread.Model.BaseSheetSpanModel model;

model = (FarPoint.Win.Spread.Model.BaseSheetSpanModel)fpSpread1.ActiveSheet.Models.Span;
model.AddSelection(0, 0, 2, 2);

model.Changed += new FarPoint.Win.Spread.Model.SheetSpanModelEventHandler(model_SpanModelChanged);
    
private void button1_Click(object sender, System.EventArgs e)
{
    model.Add(4, 2, 2, 3);
}

private void model_SpanModelChanged(object sender, FarPoint.Win.Spread.Model.SheetSpanModelEventArgs e)
{
    textBox1.Text = e.Type.ToString();
}
Friend WithEvents model As FarPoint.Win.Spread.Model.BaseSheetSpanModel

model = FpSpread1.ActiveSheet.Models.Span
model.Add(0, 0, 2, 2)

Dim h As FarPoint.Win.Spread.Model.SheetSpanModelEventHandler = AddressOf model_SpanModelChanged
AddHandler model.Changed, h

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    model.Add(4, 2, 2, 3)
End Sub

Private Sub model_SpanModelChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.Model.SheetSpanModelEventArgs)
    TextBox1.Text = e.Type.ToString()
End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetSpanModelEventArgs Class
SheetSpanModelEventArgs Members

 

 


Copyright © GrapeCity, inc. All rights reserved.