인프런 커뮤니티 질문&답변

schnabel님의 프로필 이미지
schnabel

작성한 질문수

직장인에게 꼭 필요한 파이썬-아래아한글 자동화 레시피

[꿀팁] 기존에 열려있는 한/글 프로그램을 파이썬으로 제어하기

개체 여백 조정 방법

해결된 질문

작성

·

541

1

표 혹은 그림이든 개체 여백조정을 하고자 합니다.

매크로정의하고 코드편집에 따라서 해보았는데요 잘 동작하지 않네요..ㅠㅠ

아래는 개체 바깥 여백조정을 위한 함수를 만들어 본 예제입니다. 바깥 윗여백만 조정하는 것으로 했습니다.

def Change_Object_Blank():
    hwp.HAction.GetDefault("CellBorderFill", hwp.HParameterSet.HCellBorderFill.HSet)
    hwp.HParameterSet.HCellBorderFill.Hset.SetItem("ApplyTo", 1)
    hwp.HAction.Execute("CellBorderFill", hwp.HParameterSet.HCellBorderFill.HSet)
    hwp.HAction.GetDefault("TablePropertyDialog", hwp.HParameterSet.HShapeObject.HSet)
    hwp.HParameterSet.HShapeObject.OutsideMarginTop = hwp.MiliToHwpUnit(0.0)
    hwp.HParameterSet.HShapeObject.Hset.SetItem("ShapeType", 6)
    hwp.HAction.Execute("TablePropertyDialog", hwp.HParameterSet.HShapeObject.HSet)
    return

답변 1

2

일코님의 프로필 이미지
일코
지식공유자

아래는 바깥 윗여백을 0으로 조정하는 코드입니다.
참고하시기 바랍니다.
코드와 관련한 추가 질문은 댓글로 달아주시면 답변 드리겠습니다^^
행복한 하루 되세요!

def top_margin_to(margin: float) -> bool:
    """
    표 상단 바깥 여백을 조절합니다.
    """
    shape_object = hwp.HParameterSet.HShapeObject
    hwp.HAction.GetDefault("TablePropertyDialog", shape_object.HSet)
    shape_object.OutsideMarginTop = hwp.MiliToHwpUnit(margin)
    return hwp.HAction.Execute("TablePropertyDialog", shape_object.HSet)

image

위 함수 작성 과정을 짧은 포스팅으로 남겨보았습니다.
참고하시기 바랍니다^^

[인프런QnA] 개체 여백 조정 방법 (tistory.com)

 

schnabel님의 프로필 이미지
schnabel
질문자

저의 한글 자동화의 스승님이십니다.

식사라도 대접하고 싶은 심정입니다. 이렇게 빠른 피드백을 주신 점 가슴 깊이 감사드립니다.

schnabel님의 프로필 이미지
schnabel

작성한 질문수

질문하기