Méthode | Description | |
---|---|---|
AbortFind ( ) : void |
Aborts a working Find method.
|
|
CanCopy ( ) : bool |
Return true if Copy method could be invoked.
|
|
CanCut ( ) : bool |
Return true if Cut method could be invoked.
|
|
CanPaste ( ) : bool |
Return true if Paste method could be invoked.
|
|
Copy ( ) : void |
Copies the current selection in the hex box to the Clipboard.
|
|
Cut ( ) : void |
Moves the current selection in the hex box to the Clipboard.
|
|
Find ( byte bytes, long startIndex ) : long |
Searches the current ByteProvider
|
|
HexBox ( ) : System |
Initializes a new instance of a HexBox class.
|
|
Paste ( ) : void |
Replaces the current selection in the hex box with the contents of the Clipboard.
|
|
ScrollByteIntoView ( ) : void |
Scrolls the selection start byte into view
|
|
ScrollByteIntoView ( long index ) : void |
Scrolls the specific byte into view
|
|
Select ( long start, long length ) : void |
Selects the hex box.
|
Méthode | Description | |
---|---|---|
OnBorderStyleChanged ( |
Raises the BorderStyleChanged event.
|
|
OnByteProviderChanged ( EventArgs e ) : void |
Raises the ByteProviderChanged event.
|
|
OnBytesPerLineChanged ( EventArgs e ) : void |
Raises the BytesPerLineChanged event.
|
|
OnCurrentLineChanged ( EventArgs e ) : void |
Raises the CurrentLineChanged event.
|
|
OnCurrentPositionInLineChanged ( EventArgs e ) : void |
Raises the CurrentPositionInLineChanged event.
|
|
OnGotFocus ( EventArgs e ) : void |
Raises the GotFocus event.
|
|
OnHexCasingChanged ( EventArgs e ) : void |
Raises the HexCasingChanged event.
|
|
OnHorizontalByteCountChanged ( EventArgs e ) : void |
Raises the HorizontalByteCountChanged event.
|
|
OnInsertActiveChanged ( EventArgs e ) : void |
Raises the InsertActiveChanged event.
|
|
OnLineInfoVisibleChanged ( EventArgs e ) : void |
Raises the LineInfoVisibleChanged event.
|
|
OnLostFocus ( EventArgs e ) : void |
Raises the LostFocus event.
|
|
OnMouseDown ( MouseEventArgs e ) : void |
Raises the MouseDown event.
|
|
OnMouseWheel ( MouseEventArgs e ) : void |
Raises the MouseWhell event
|
|
OnPaint ( PaintEventArgs e ) : void |
Paints the hex box.
|
|
OnPaintBackground ( PaintEventArgs e ) : void |
Paints the background.
|
|
OnReadOnlyChanged ( EventArgs e ) : void |
Raises the ReadOnlyChanged event.
|
|
OnResize ( EventArgs e ) : void |
Raises the Resize event.
|
|
OnSelectionLengthChanged ( EventArgs e ) : void |
Raises the SelectionLengthChanged event.
|
|
OnSelectionStartChanged ( EventArgs e ) : void |
Raises the SelectionStartChanged event.
|
|
OnStringViewVisibleChanged ( EventArgs e ) : void |
Raises the StringViewVisibleChanged event.
|
|
OnUseFixedBytesPerLineChanged ( EventArgs e ) : void |
Raises the UseFixedBytesPerLineChanged event.
|
|
OnVScrollBarVisibleChanged ( EventArgs e ) : void |
Raises the VScrollBarVisibleChanged event.
|
|
OnVerticalByteCountChanged ( EventArgs e ) : void |
Raises the VerticalByteCountChanged event.
|
Méthode | Description | |
---|---|---|
ActivateEmptyKeyInterpreter ( ) : void | ||
ActivateKeyInterpreter ( ) : void | ||
ActivateStringKeyInterpreter ( ) : void | ||
BasePreProcessMessage ( |
||
CheckCurrentLineChanged ( ) : void | ||
CheckCurrentPositionInLineChanged ( ) : void | ||
CreateCaret ( ) : void | ||
DestroyCaret ( ) : void | ||
FromScrollPos ( int value ) : long | ||
GetBytePointF ( Point gp ) : |
||
GetBytePointF ( long byteIndex ) : |
||
GetByteStringPointF ( Point gp ) : |
||
GetDefaultForeColor ( ) : Color | ||
GetGridBytePoint ( long byteIndex ) : Point | ||
GetHexBytePositionInfo ( Point p ) : |
||
GetStringBytePositionInfo ( Point p ) : |
||
InternalSelect ( long start, long length ) : void | ||
PaintCurrentByteSign ( Graphics g, Rectangle rec ) : void | ||
PaintCurrentBytesSign ( Graphics g ) : void | ||
PaintHex ( Graphics g, long startByte, long endByte ) : void | ||
PaintHexAndStringView ( Graphics g, long startByte, long endByte ) : void | ||
PaintHexString ( Graphics g, byte b, Brush brush, Point gridPoint ) : void | ||
PaintHexStringSelected ( Graphics g, byte b, Brush brush, Brush brushBack, Point gridPoint ) : void | ||
PaintLineInfo ( Graphics g, long startByte, long endByte ) : void | ||
PerformScrollLineDown ( ) : void | ||
PerformScrollLineUp ( ) : void | ||
PerformScrollLines ( int lines ) : void | ||
PerformScrollPageDown ( ) : void | ||
PerformScrollPageUp ( ) : void | ||
PerformScrollThumbTrack ( object sender, EventArgs e ) : void |
Performs the thumbtrack scrolling after an delay.
|
|
PerformScrollThumpPosition ( long pos ) : void | ||
PerformScrollToLine ( long pos ) : void | ||
PreProcessMessage ( Message &m ) : bool | ||
ReleaseSelection ( ) : void | ||
SetCaretPosition ( Point p ) : void | ||
SetHorizontalByteCount ( int value ) : void | ||
SetPosition ( long bytePos ) : void | ||
SetPosition ( long bytePos, int byteCharacterPos ) : void | ||
SetSelectionLength ( long selectionLength ) : void | ||
SetVerticalByteCount ( int value ) : void | ||
ToScrollMax ( long value ) : int | ||
ToScrollPos ( long value ) : int | ||
UpdateCaret ( ) : void | ||
UpdateRectanglePositioning ( ) : void | ||
UpdateScrollSize ( ) : void | ||
UpdateVScroll ( ) : void | ||
UpdateVisibilityBytes ( ) : void | ||
_byteProvider_LengthChanged ( object sender, EventArgs e ) : void | ||
_vScrollBar_Scroll ( object sender, ScrollEventArgs e ) : void |
public Find ( byte bytes, long startIndex ) : long | ||
bytes | byte | the array of bytes to find |
startIndex | long | the start index |
Résultat | long |
protected OnBorderStyleChanged ( |
||
e | An EventArgs that contains the event data. | |
Résultat | void |
protected OnByteProviderChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnBytesPerLineChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnCurrentLineChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnCurrentPositionInLineChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnGotFocus ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnHexCasingChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnHorizontalByteCountChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnInsertActiveChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnLineInfoVisibleChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnLostFocus ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnMouseDown ( MouseEventArgs e ) : void | ||
e | MouseEventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnMouseWheel ( MouseEventArgs e ) : void | ||
e | MouseEventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnPaint ( PaintEventArgs e ) : void | ||
e | PaintEventArgs | A PaintEventArgs that contains the event data. |
Résultat | void |
protected OnPaintBackground ( PaintEventArgs e ) : void | ||
e | PaintEventArgs | A PaintEventArgs that contains the event data. |
Résultat | void |
protected OnReadOnlyChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnResize ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnSelectionLengthChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnSelectionStartChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnStringViewVisibleChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnUseFixedBytesPerLineChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnVScrollBarVisibleChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
protected OnVerticalByteCountChanged ( EventArgs e ) : void | ||
e | EventArgs | An EventArgs that contains the event data. |
Résultat | void |
public ScrollByteIntoView ( long index ) : void | ||
index | long | the index of the byte |
Résultat | void |
public Select ( long start, long length ) : void | ||
start | long | the start index of the selection |
length | long | the length of the selection |
Résultat | void |