BrightIdeasSoftware.ObjectListView.SetNativeBackgroundTiledImage C# (CSharp) Method

SetNativeBackgroundTiledImage() public method

Set the given image to be the tiled background of the ListView.

This has the same limitations as described in SetNativeBackgroundWatermark and SetNativeBackgroundImage. Make sure those limitations are understood before using the method.

public SetNativeBackgroundTiledImage ( Image image ) : void
image Image The image to be drawn. If null, any existing image will be removed.
return void
        public void SetNativeBackgroundTiledImage(Image image)
        {
            NativeMethods.SetBackgroundImage(this, image, false, true, 0, 0);
        }
ObjectListView