ImageAttributes.SetWrapMode

SetWrapMode(WrapMode)

Sets the wrap mode that is used to decide how to tile a texture across a shape, or at shape boundaries. A texture is tiled across a shape to fill it in when the texture is smaller than the shape it is filling.

public void SetWrapMode(WrapMode mode)
ParameterTypeDescription
modeWrapModeAn element of WrapMode that specifies how repeated copies of an image are used to tile an area.

See Also


SetWrapMode(WrapMode, Color)

Sets the wrap mode and color used to decide how to tile a texture across a shape, or at shape boundaries. A texture is tiled across a shape to fill it in when the texture is smaller than the shape it is filling.

public void SetWrapMode(WrapMode mode, Color color)
ParameterTypeDescription
modeWrapModeAn element of WrapMode that specifies how repeated copies of an image are used to tile an area.
colorColorAn ImageAttributes object that specifies the color of pixels outside of a rendered image. This color is visible if the mode parameter is set to Clamp and the source rectangle passed to DrawImage is larger than the image itself.

See Also


SetWrapMode(WrapMode, Color, bool)

Sets the wrap mode and color used to decide how to tile a texture across a shape, or at shape boundaries. A texture is tiled across a shape to fill it in when the texture is smaller than the shape it is filling.

public void SetWrapMode(WrapMode mode, Color color, bool clamp)
ParameterTypeDescription
modeWrapModeAn element of WrapMode that specifies how repeated copies of an image are used to tile an area.
colorColorA color object that specifies the color of pixels outside of a rendered image. This color is visible if the mode parameter is set to Clamp and the source rectangle passed to DrawImage is larger than the image itself.
clampBooleanThis parameter has no effect. Set it to false.

See Also