ShowRasterImage プロパティ(ActiveX)

リアルタイム画面移動またはリアルタイム ズーム中のラスター イメージの表示をコントロールします。

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.ShowRasterImage
object

タイプ: PreferencesDisplay

このプロパティが適用されるオブジェクト。

プロパティの値

読み込み専用: いいえ

タイプ: ブール型

注意

このプロパティの初期値は False です。

表示のドラッグをオンにして ShowRasterImage を有効にすると、元のイメージの位置変更をするカーソルに合わせてイメージのコピーが移動します。

注: このプロパティの値は、システム変数 RTDISPLAY に格納されます。

VBA:

Sub Example_ShowRasterImage()
    ' This example returns the current setting of
    ' ShowRasterImage. It then changes the value, and finally
    ' it resets the value back to the original setting.
    
    Dim preferences As AcadPreferences
    Dim currShowRasterImage As Boolean
    
    Set preferences = ThisDrawing.Application.Preferences
    
    ' Retrieve the current ShowRasterImage value
    currShowRasterImage = preferences.DISPLAY.ShowRasterImage
    MsgBox "The current value for ShowRasterImage is " & preferences.DISPLAY.ShowRasterImage, vbInformation, "ShowRasterImage Example"
    
    ' Change the value for ShowRasterImage
    preferences.DISPLAY.ShowRasterImage = Not (currShowRasterImage)
    MsgBox "The new value for ShowRasterImage is " & preferences.DISPLAY.ShowRasterImage, vbInformation, "ShowRasterImage Example"
    
    ' Reset ShowRasterImage to its original value
    preferences.DISPLAY.ShowRasterImage = currShowRasterImage
    MsgBox "The ShowRasterImage value is reset to " & preferences.DISPLAY.ShowRasterImage, vbInformation, "ShowRasterImage Example"
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_ShowRasterImage()
    ;; This example returns the current setting of
    ;; ShowRasterImage. It then changes the value, and finally
    ;; it resets the value back to the original setting.
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
    
    ;; Retrieve the current ShowRasterImage value
    (setq currShowRasterImage (vla-get-ShowRasterImage (vla-get-Display preferences)))
    (alert (strcat "The current value for ShowRasterImage is " (if (= currShowRasterImage :vlax-true) "True" "False")))
    
    ;; Change the value for ShowRasterImage
    (vla-put-ShowRasterImage (vla-get-Display preferences) (if (= currShowRasterImage :vlax-true) :vlax-false :vlax-true))
    (alert (strcat "The new value for ShowRasterImage is " (if (= (vla-get-ShowRasterImage (vla-get-Display preferences)) :vlax-true) "True" "False")))
    
    ;; Reset ShowRasterImage to its original value
    (vla-put-ShowRasterImage (vla-get-Display preferences) currShowRasterImage)
    (alert (strcat "The ShowRasterImage value is reset to " (if (= (vla-get-ShowRasterImage (vla-get-Display preferences)) :vlax-true) "True" "False")))
)