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