RichEditTextRange.InsertImage メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この範囲に画像を挿入します。
public:
virtual void InsertImage(int width, int height, int ascent, VerticalCharacterAlignment verticalAlign, Platform::String ^ alternateText, IRandomAccessStream ^ value) = InsertImage;
void InsertImage(int const& width, int const& height, int const& ascent, VerticalCharacterAlignment const& verticalAlign, winrt::hstring const& alternateText, IRandomAccessStream const& value);
public void InsertImage(int width, int height, int ascent, VerticalCharacterAlignment verticalAlign, string alternateText, IRandomAccessStream value);
function insertImage(width, height, ascent, verticalAlign, alternateText, value)
Public Sub InsertImage (width As Integer, height As Integer, ascent As Integer, verticalAlign As VerticalCharacterAlignment, alternateText As String, value As IRandomAccessStream)
パラメーター
- width
-
Int32
int
イメージの幅 (デバイスに依存しないピクセル (DIP) 単位)。
- height
-
Int32
int
画像の高さ (DIP 単位)。
- ascent
-
Int32
int
verticalAlign が Baseline の場合、このパラメーターは、画像の上部がテキストベースラインの上に延びる距離 (DIP) です。 verticalAlign が Baseline で、ascent が 0 の場合、画像の下部はテキストのベースラインに配置されます。
- verticalAlign
- VerticalCharacterAlignment
画像の垂直方向の配置。
- alternateText
-
String
Platform::String
winrt::hstring
画像の代替テキスト。
- value
- IRandomAccessStream
イメージ データを含むストリーム。
実装
M:Windows.UI.Text.ITextRange.InsertImage(System.Int32,System.Int32,System.Int32,Windows.UI.Text.VerticalCharacterAlignment,System.String,Windows.Storage.Streams.IRandomAccessStream)
M:Windows.UI.Text.ITextRange.InsertImage(int,int,int,Windows.UI.Text.VerticalCharacterAlignment,Platform::String,Windows.Storage.Streams.IRandomAccessStream)
M:Windows.UI.Text.ITextRange.InsertImage(int,int,int,Windows.UI.Text.VerticalCharacterAlignment,winrt::hstring,Windows.Storage.Streams.IRandomAccessStream)