자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vba [vba] 사진(이미지) 클릭시 확대 / 축소하기

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 8,306회 작성일 19-09-29 22:19

본문

93212966061dab9c7783a922405bac10_1569763179_0285.png
 


Sub PictureToggleZoom()
    Dim P As Picture, C As Range, V As Variant
    Set P = ActiveSheet.Pictures(Application.Caller)
    P.ShapeRange.ZOrder msoBringToFront
    P.ShapeRange.LockAspectRatio = msoTrue
    If InStr(P.Name, "TogglePicture"= 0 Then _
        P.Name = Join(Array("TogglePicture", P.TopLeftCell.Address(00), False))
    V = Split(P.Name)
    Set C = Range(V(1))
    V(2= Not V(2)
    If V(2Then
        P.Width = C.Width * 5
        P.Left = P.Left - (P.Width - C.Width)
    Else
        P.Width = C.Width
        P.Left = C.Left
    End If
    P.Name = Join(V)
End Sub



댓글목록

등록된 댓글이 없습니다.