Notice
Recent Posts
Recent Comments
Link
k2hyun
Python - 파이썬 표 객체 여백 설정 본문
반응형
Python - 파이썬 표 객체 여백 설정
한글문서 - 객체 속성
단축키 ctrl + N , K
표 객체 바깥 여백, 셀안 여백 설정
hwp.HParameterSet.HTableCreation.TableProperties.OutsideMarginBottom = hwp.MiliToHwpUnit(0.0) #표속성 바깥여백 - 아래쪽
hwp.HParameterSet.HTableCreation.TableProperties.OutsideMarginTop = hwp.MiliToHwpUnit(0.0) #표속성 바깥여백 - 위쪽
hwp.HParameterSet.HTableCreation.TableProperties.OutsideMarginRight = hwp.MiliToHwpUnit(0.0) #표속성 바깥여백 - 오른쪽
hwp.HParameterSet.HTableCreation.TableProperties.OutsideMarginLeft = hwp.MiliToHwpUnit(0.0) #표속성 바깥여백 - 왼쪽
hwp.HParameterSet.HTableCreation.TableProperties.CellMarginBottom = hwp.MiliToHwpUnit(0.0) # 표속성 - 셀안 여백 - 아래쪽
hwp.HParameterSet.HTableCreation.TableProperties.CellMarginTop = hwp.MiliToHwpUnit(0.0) # 표속성 - 셀안 여백 - 위쪽
hwp.HParameterSet.HTableCreation.TableProperties.CellMarginRight = hwp.MiliToHwpUnit(0.0) # 표속성 - 셀안 여백 - 오른쪽
hwp.HParameterSet.HTableCreation.TableProperties.CellMarginLeft = hwp.MiliToHwpUnit(0.0) # 표속성 - 셀안 여백 - 왼쪽
반응형
Comments