Select(Shape,Boolean,Boolean,Boolean,Boolean) Method
In This Topic
Selects the specified drawing object.
Syntax
'Declaration
Public Overridable Function Select( _
ByVal As Shape, _
ByVal As Boolean, _
ByVal As Boolean, _
Optional ByVal As Boolean, _
Optional ByVal As Boolean _
) As Shape
'Usage
Dim instance As WorksheetDrawing
Dim shape As Shape
Dim replace As Boolean
Dim fireEvent As Boolean
Dim fireAction As Boolean
Dim notifyUI As Boolean
Dim value As Shape
value = instance.Select(shape, replace, fireEvent, fireAction, notifyUI)
public virtual Shape Select(
Shape ,
bool ,
bool ,
bool ,
bool
)
Parameters
- shape
- The drawing object to select.
- replace
- if set to
true
, all current selected drawing objects will be deselected. - fireEvent
- if set to
true
, IShape.Action will be fired. - fireAction
- notifyUI
See Also