Gets a shape.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Overridable Function GetShape( _
   ByVal name As String _
) As PSShape  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim name As String
Dim value As PSShape
 
value = instance.GetShape(name)  | 
 
            Parameters
- name
 
- Name of shape
 
            
            Return Value
PSShape object containing the shape
 
            
						
            
            
            
            
Example
This example changes the backcolor of the shape.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.DrawingSpace.ArrowShape arrow = new FarPoint.Win.Spread.DrawingSpace.ArrowShape();
arrow.Name = "MyArrow";
arrow.Parent = fpSpread1;
fpSpread1.ActiveSheet.AddShape(arrow, 3, 2);
private void button1_Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.DrawingSpace.PSShape pss;
pss = fpSpread1.ActiveSheet.GetShape("MyArrow");
pss.BackColor = Color.Red;
}
 | 
 
| Visual Basic |  Copy Code | 
|---|
Dim arrow As New FarPoint.Win.Spread.DrawingSpace.ArrowShape
arrow.Name = "MyArrow"
arrow.Parent = FpSpread1
FpSpread1.ActiveSheet.AddShape(arrow, 3, 2)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim pss As FarPoint.Win.Spread.DrawingSpace.PSShape
pss = FpSpread1.ActiveSheet.GetShape("MyArrow")
pss.BackColor = Color.Red
End Sub | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also