Removes the shape from the drawing container for the sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function RemoveShape( _
ByVal name As String _
) As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim name As String
Dim value As Boolean
value = instance.RemoveShape(name) |
Parameters
- name
- Name of shape
Return Value
Boolean:
true if successful;
false otherwise
Example
This example deletes the specified arrow shape from the sheet container.
C# | Copy Code |
---|
FarPoint.Win.Spread.DrawingSpace.ArrowShape a = new FarPoint.Win.Spread.DrawingSpace.ArrowShape();
a.Name = "arrow";
fpSpread1.ActiveSheet.AddShape(a);
fpSpread1.ActiveSheet.RemoveShape("arrow");
|
Visual Basic | Copy Code |
---|
Dim a As New FarPoint.Win.Spread.DrawingSpace.ArrowShape
a.Name = "arrow"
FpSpread1.ActiveSheet.AddShape(a)
FpSpread1.ActiveSheet.RemoveShape("arrow") |
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