Visual Components는 Windows용 FRE에 구현되어 있습니다.
ScaleTypes 상수는 사용할 수 있는 배율 유형을 나타냅니다. 이 상수는 ImageViewer, ZoomViewer 또는 TextEditor 객체의 ViewScale 속성 값으로 사용할 수 있습니다.
module ScaleTypes
{
const int ST_FitToWidth = -1;
const int ST_FitToHeight = -2;
const int ST_BestFit = -3;
const int ST_PixelToPixel = -4;
}
| 플래그 이름 | 설명 |
|---|
| ST_FitToWidth | 페이지를 너비에 맞게 조정합니다. |
| ST_FitToHeight | 페이지를 높이에 맞게 조정합니다. 이 상수는 Zoom Viewer에서는 사용할 수 없습니다. |
| ST_BestFit | 가장 적합한 크기를 자동으로 선택합니다. 이 상수는 Zoom Viewer에서는 사용할 수 없습니다. |
| ST_PixelToPixel | 이미지를 픽셀 대 픽셀 모드로 표시합니다. 이 상수는 Zoom Viewer에서만 사용할 수 있습니다. |
IImageViewer::ViewScale
IZoomViewer::ViewScale
ITextEditor::ViewScale