vsto - Shape Events Visual studio Tools for Office -
by using below code created shape in visual studio tools office
private void sheet01_startup(object sender, system.eventargs e) {
this.shapes.addshape(office.msoautoshapetype.msoshapeactionbuttoncustom, 160, 461, 109, 20);
}
i want thing when click on shape.
please me write events this.
vsto doesn't provide anythig that.
if talking excel add-in, shape class doesn't provide event that. bielive may find selectionchange event of worksheet class helpful. fired when selection changes on worksheet. so, can check out select object on sheet.
Comments
Post a Comment