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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also